WIP Add settings/about pane

This commit is contained in:
2026-01-24 14:33:00 +07:00
parent f60dacac80
commit e8f7e74e40
4 changed files with 56 additions and 3 deletions

View File

@@ -188,12 +188,24 @@ body {
width: 300px;
background: white;
color: #333;
z-index: 2000;
z-index: 3100; /* Higher than Header (3000) */
box-shadow: 2px 0 5px rgb(0 0 0 / 10%);
display: flex;
flex-direction: column;
}
/* Settings Pane Mobile Overrides */
@media (max-width: 768px) {
.settings-pane.sidebar {
width: 100%;
right: 0;
border-radius: 0; /* Full screen, no rounded corners needed */
height: 100%; /* Ensure full height */
top: 0; /* Start from top */
bottom: 0;
}
}
.sidebar-header {
padding: 1rem;
border-bottom: 1px solid #eee;