feat: add mobile responsiveness to settings layout

- Add mobile responsive styles for settings page
- Stack sidebar tabs horizontally on small screens
- Adjust workspace header for mobile
- Quality gates: typecheck ✓ lint ✓ build ✓
This commit is contained in:
Fusion
2026-05-19 15:28:40 +02:00
parent 0bc0d99c21
commit 92c8dfe986
2 changed files with 44 additions and 61 deletions
+35
View File
@@ -1136,6 +1136,41 @@ a {
padding: 1.5rem;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
.settings-layout {
flex-direction: column;
gap: 1rem;
}
.settings-sidebar {
width: 100%;
}
.settings-nav {
flex-direction: row;
overflow-x: auto;
padding-bottom: 0.5rem;
}
.settings-nav-link {
white-space: nowrap;
padding: 0.5rem 0.75rem;
font-size: 0.875rem;
}
.workspace-header {
flex-direction: column;
gap: 1rem;
align-items: flex-start;
}
.workspace-header-actions {
width: 100%;
justify-content: flex-start;
}
}
.settings-panel h2 {
margin: 0 0 1.25rem;
font-size: 1.25rem;