Docker server has responsiveness now

This commit is contained in:
2025-12-17 13:00:15 -05:00
parent 1a01d29f19
commit c11a1eed35
14 changed files with 2465 additions and 747 deletions

View File

@@ -361,3 +361,97 @@ html.electron body {
transform: rotate(360deg);
}
}
@media (max-width: 768px) {
body {
height: auto;
overflow-y: auto;
overflow-x: hidden;
}
.calendar-wrapper {
padding: 1rem;
height: auto;
overflow: visible;
display: block;
}
.calendar-controls {
flex-direction: column;
gap: 1rem;
padding-bottom: 1rem;
}
.month-selector {
width: 100%;
justify-content: space-between;
gap: 0.5rem;
}
.month-title {
font-size: 1.5rem;
min-width: auto;
text-align: center;
flex: 1;
}
.controls-right {
width: 100%;
justify-content: center;
}
.calendar-board {
border: none;
background: transparent;
box-shadow: none;
overflow: visible;
}
.weekdays-grid {
display: none;
}
.days-grid {
display: flex;
flex-direction: column;
gap: 1rem;
background: transparent;
height: auto;
overflow: visible;
}
.day-cell.empty {
display: none;
}
.day-cell {
border: 1px solid var(--border-subtle);
border-radius: var(--radius-lg);
background: var(--color-bg-elevated);
min-height: auto;
padding: 1rem;
}
.day-cell:nth-child(7n) {
border-right: 1px solid var(--border-subtle);
}
.day-header {
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
padding-bottom: 0.5rem;
margin-bottom: 0.8rem;
}
.day-number {
background: rgba(255, 255, 255, 0.05);
}
.anime-chip {
padding: 12px;
font-size: 0.95rem;
}
.cell-backdrop {
display: none;
}
}