Préparation toggle classe pour menu mobile

This commit is contained in:
Alexel 2023-08-14 16:27:46 -04:00
parent c98a587f59
commit 1fed4e9a8e
4 changed files with 44 additions and 0 deletions

View file

@ -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;
}

View file

@ -1,5 +1,9 @@
.header {
position: fixed;
z-index: 20;
width: 100%;
top: 0;
background-color: #fff;
}
.headerWrapper{