tentative d'affichage de l'icône hamburger

This commit is contained in:
Alexel 2023-08-08 17:25:41 -04:00
parent 2b55aad567
commit 93c0e27b83
2 changed files with 10 additions and 3 deletions

View file

@ -18,12 +18,19 @@
cursor: pointer;
}
.headerMenuHamburger{
fill: #394596;
height: 100px;
width: 100px;
}
/* Le header s'affiche en menu hamburger pour les breakpoints téléphone et tablette */
@media screen and (max-width: 576px) {
.headerMenuElement{
display: none;
}
.hamburgerMenuIcon{
.headerMenuHamburger{
display: block;
}
}
@ -32,7 +39,7 @@
.headerMenuElement{
display: none;
}
.hamburgerMenuIcon{
.headerMenuHamburger{
display: block;
}
}