Clean up index page

This commit is contained in:
2025-12-10 20:50:57 +01:00
parent fd81854b33
commit 6f1c1405d9
4 changed files with 92 additions and 63 deletions

View File

@@ -348,8 +348,9 @@ body {
.panel-actions {
display: flex;
flex-direction: column;
gap: 10px;
flex-direction: row;
gap: 20px;
padding: 20px;
}
.preview-grid {
@@ -461,6 +462,35 @@ body {
gap: 20px;
}
.dashboard-topbar {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 14px 18px;
background: rgba(15, 23, 42, 0.85);
border: 1px solid #1f2937;
border-radius: 14px;
box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}
.user-pill {
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 4px;
padding: 10px 12px;
border-radius: 12px;
background: rgba(124, 58, 237, 0.1);
border: 1px solid rgba(124, 58, 237, 0.2);
}
.user-display {
font-weight: 700;
color: #e2e8f0;
font-size: 16px;
}
.dashboard-header {
display: flex;
align-items: flex-start;
@@ -1278,6 +1308,12 @@ body {
gap: 10px;
}
#admin-suggestions {
max-height: 240px;
overflow-y: auto;
padding-right: 6px;
}
.stacked-list-item {
display: flex;
justify-content: space-between;