* replace Bootstrap-based styling with Tailwind CSS * update theme compatibility for latest Hugo version * refactor templates and partials * fix outdated code and broken components * improve project structure and maintainability * optimize styling and frontend build setup
13 lines
224 B
CSS
13 lines
224 B
CSS
/* navbar toggler */
|
|
input#nav-toggle:checked + label #show-button {
|
|
@apply hidden;
|
|
}
|
|
|
|
input#nav-toggle:checked + label #hide-button {
|
|
@apply block;
|
|
}
|
|
|
|
input#nav-toggle:checked ~ div #nav-menu {
|
|
@apply max-lg:block;
|
|
}
|