Internal
Public Access
CRITICAL FIX: Move base CSS before media queries
The sidebar-toggle and mobile-overlay base definitions were placed AFTER the media queries, causing them to override the responsive styles. This prevented the hamburger menu from showing and broke the sidebar drawer functionality. Fixed by moving base definitions before the Mobile Responsive section. CSS order is now correct: 1. Base styles (display: none for sidebar-toggle) 2. Media queries (display: flex at 768px) This allows the media query to properly override the base style. Updated cache version to v=4. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Sonnet 4.5
parent
d83b1e3091
commit
f836769ad7
+1
-1
@@ -10,7 +10,7 @@
|
||||
<link rel="icon" type="image/svg+xml" href="{% static 'favicons/favicon.svg' %}">
|
||||
<link rel="alternate icon" href="{% static 'favicons/favicon.svg' %}" type="image/svg+xml">
|
||||
|
||||
<link rel="stylesheet" href="{% static 'css/app.css' %}?v=3">
|
||||
<link rel="stylesheet" href="{% static 'css/app.css' %}?v=4">
|
||||
{% block extra_css %}{% endblock %}
|
||||
</head>
|
||||
<body>
|
||||
|
||||
Reference in New Issue
Block a user