Préparation toggle classe pour menu mobile
This commit is contained in:
parent
c98a587f59
commit
1fed4e9a8e
4 changed files with 44 additions and 0 deletions
|
@ -1,3 +1,20 @@
|
|||
/* La propriété CSS box-sizing définit la façon dont la hauteur et la largeur totale d'un élément est calculée (avec le modèle de boîte CSS).
|
||||
// Références: https://developer.mozilla.org/fr/docs/Web/CSS/box-sizing*/
|
||||
|
||||
html {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
*,
|
||||
*:before,
|
||||
*:after {
|
||||
box-sizing: inherit;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
body{
|
||||
margin: 0;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
.header {
|
||||
position: fixed;
|
||||
z-index: 20;
|
||||
width: 100%;
|
||||
top: 0;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.headerWrapper{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue