fix: log/tasks posities

This commit is contained in:
kodi
2026-03-14 16:33:46 +01:00
parent 15c85e874c
commit a816f71ad5
4 changed files with 39 additions and 5 deletions
+19
View File
@@ -1063,6 +1063,19 @@ button:disabled {
margin-bottom: 8px;
}
.settings-activity-grid {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
gap: 14px;
align-items: start;
}
.settings-activity-panel {
min-width: 0;
display: flex;
flex-direction: column;
}
.settings-log-list {
display: flex;
flex-direction: column;
@@ -1108,6 +1121,12 @@ button:disabled {
color: var(--color-danger);
}
@media (max-width: 900px) {
.settings-activity-grid {
grid-template-columns: minmax(0, 1fr);
}
}
.viewer-close {
position: absolute;
top: 10px;