Prevents menu overflow in mobile version

This commit is contained in:
Corinne Durrmeyer 2024-06-18 16:37:16 +02:00
parent 45d92a3ae8
commit df94e11c4f
No known key found for this signature in database
GPG key ID: DDC049DDA35585B6

View file

@ -5,3 +5,13 @@
filter: none;
}
}
.fr-header__menu.fr-modal {
// Avoid overflow on mobile version
// Due to button width
overflow-x: hidden;
.fr-btn {
width: auto;
}
}