fix(nav): no-js header menu
All checks were successful
Deploy workflow / deploy (push) Successful in 17s

This commit is contained in:
Matthieu Bessat 2024-08-13 14:28:51 +02:00
parent 293ac83a9d
commit 79e1dc3aa1
4 changed files with 28 additions and 6 deletions

View file

@ -16,6 +16,7 @@ $secondary: #f15a24;
@import "./title.scss";
@import "./landing.scss";
@import "./footer.scss";
@import "./nav.scss";
.page-footer {
border-top: 1px solid rgba(140, 130, 115, 0.15);

11
assets/sass/nav.scss Normal file
View file

@ -0,0 +1,11 @@
/* bs3: mobile navbar without js custom
* ------------------------------------
* show the collapse when navbar toggle is checked */
#navbar-toggle-cbox:checked ~ .collapse {
display: block;
}
/* the checkbox used only internally; don't display it */
#navbar-toggle-cbox {
display:none
}