feature: Add sliding viewport mobile menu support

This commit is contained in:
Keith Solomon
2025-09-29 15:18:34 -05:00
parent b1559b2ce9
commit 89a1a48382
5 changed files with 560 additions and 45 deletions

View File

@@ -7,13 +7,30 @@
* - index.php
* - nav-functional.php
*
* Desktop Navigation Styles:
* Choose one or the other for the main navigation, based on theme needs.
* @import 'nav-main-default'; (standard dropdown)
* @import 'nav-main-mega'; (mega menu style)
*
* @import 'nav-main-default';
* @import 'nav-main-mega';
* Mobile Navigation Styles:
* Choose one for mobile navigation behavior:
* @import 'nav-mobile-accordion'; (traditional dropdown/accordion style)
* @import 'nav-mobile-sliding'; (sliding viewport style)
*/
@import "./nav-functional.css";
@import "./nav-aux.css";
/* Mobile Navigation Style - Choose one of the following: */
/* Traditional dropdown style */
@import "./nav-main-default.css";
/* Mega menu style */
/* @import "./nav-main-mega.css"; */
/* Mobile Navigation Style - Choose one of the following: */
/* Accordion/dropdown style */
/* @import "./nav-mobile-accordion.css"; */
/* Sliding viewport style */
@import "./nav-mobile-sliding.css";
@import "./nav-footer.css";