diff --git a/_layouts/default.html b/_layouts/default.html index 23bd658..0201fdf 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -680,68 +680,56 @@ max-width: none; } } - - /* Add these styles for mobile menu animation */ - #mobile-menu { - transition: all 0.3s ease-in-out; - max-height: 0; - overflow: hidden; - } - - #mobile-menu.show { - max-height: 300px; /* Adjust this value based on your content */ - } - - /* Ensure the select is positioned over the icon but invisible */ - #mobile-nav { - top: 0; - right: 0; - z-index: 2; - } - - /* Mobile menu animation */ - #mobile-menu { - transition: all 0.3s ease-in-out; - opacity: 0; - transform: translateY(-10px); - } - - #mobile-menu.show { - opacity: 1; - transform: translateY(0); - } - - /* Add subtle border between menu items */ - #mobile-menu a:not(:last-child) { - border-bottom: 1px solid rgba(156, 163, 175, 0.1); - }
-