- Start met Mobiele versie van de chat client.

This commit is contained in:
Josako
2025-08-02 17:27:20 +02:00
parent 9a88582fff
commit 4d6466038f
11 changed files with 827 additions and 26 deletions

View File

@@ -18,6 +18,16 @@
width: 100%;
}
/* Mobile header container - hidden on desktop */
#mobile-header-container {
display: none;
}
/* Desktop layout - default */
#sidebar-container {
display: block;
}
/* Sidebar styling */
.sidebar {
width: 300px;
@@ -254,4 +264,29 @@ body {
/* .btn-primary wordt nu gedefinieerd in chat-components.css */
/* Mobile responsive layout */
@media (max-width: 768px) {
/* Switch to vertical layout */
.app-container {
flex-direction: column;
}
/* Hide desktop sidebar on mobile */
#sidebar-container {
display: none;
}
/* Show mobile header on mobile */
#mobile-header-container {
display: block;
width: 100%;
}
/* Content area takes remaining space */
.content-area {
flex: 1;
height: calc(100vh - 60px); /* Subtract mobile header height */
}
}
/* Responsieve design regels worden nu gedefinieerd in chat-components.css */