feat: renommer package ui pour frontend
Si on suit les considérations du domain-driven design, le fait qu'on réfère toustes à cette partie du code comme `le frontend` me pousse à renommer le package pour mieux réflèter notre utilisation. Ça devrait rendre plus évident où les fichiers sources du frontend sont situés.
This commit is contained in:
parent
74fe5ac697
commit
076bb1a90c
98 changed files with 9 additions and 12 deletions
38
frontend/public/css/footer.css
Normal file
38
frontend/public/css/footer.css
Normal file
|
@ -0,0 +1,38 @@
|
|||
.pageFooter {
|
||||
background: #f3f3f7;
|
||||
/*Gris pâle*/
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
ul.footerElementList {
|
||||
display: flex;
|
||||
flex-flow: row;
|
||||
list-style: none;
|
||||
justify-content: space-around;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
|
||||
}
|
||||
|
||||
.footerElement {
|
||||
font-family: "Poppins";
|
||||
font-weight: 400;
|
||||
/*semi-bold*/
|
||||
font-size: 0.5rem;
|
||||
/*8px*/
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.footerElement {
|
||||
font-family: "Poppins";
|
||||
font-weight: 400;
|
||||
/*semi-bold*/
|
||||
font-size: 0.75rem;
|
||||
/*12px*/
|
||||
text-align: center;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue