closed issue #20

This commit is contained in:
somrat sorkar
2023-07-27 10:28:16 +06:00
parent f8b3c3694f
commit 2aaf1bd819
2 changed files with 16 additions and 23 deletions

View File

@@ -1,14 +1,14 @@
// navbar toggler
input#nav-toggle:checked ~ label#show-button {
input#nav-toggle:checked + label #show-button {
@apply hidden;
}
input#nav-toggle:checked ~ label#hide-button {
@apply flex lg:hidden;
input#nav-toggle:checked + label #hide-button {
@apply block;
}
input#nav-toggle:checked ~ #nav-menu {
@apply block lg:flex;
@apply block;
}
.header {