refactor: déplacer fichiers go source vers pkg/ et cmd/
Déplacer public/ et templates/ vers ui/ et ui/public/ Bump projet à v3, API toujours v1
This commit is contained in:
parent
e46033d4a9
commit
7d4a747774
107 changed files with 68 additions and 107 deletions
48
ui/public/css/snackbar.css
Normal file
48
ui/public/css/snackbar.css
Normal file
|
@ -0,0 +1,48 @@
|
|||
body {
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
.snackbar {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
background-color: #FF563C;
|
||||
color: #fff;
|
||||
width: 100%;
|
||||
padding: 5px 0;
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
.snackbar-is-closed {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.snackbarWrapper {
|
||||
display: flex;
|
||||
flex-flow: row;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
line-height: 100%;
|
||||
}
|
||||
|
||||
span {
|
||||
margin: 10px 10px 10px 0;
|
||||
font-size: 0.75rem;
|
||||
/*12px*/
|
||||
font-family: 'Poppins';
|
||||
font-weight: 600;
|
||||
/*semi-bold*/
|
||||
}
|
||||
|
||||
@media screen and (min-width: 375px) {
|
||||
span {
|
||||
font-size: 1rem;
|
||||
/*16px*/
|
||||
}
|
||||
}
|
||||
|
||||
.snackbarFermer {
|
||||
height: 30px;
|
||||
width: 30px;
|
||||
cursor: pointer;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue