Cards flow

This commit is contained in:
2026-05-02 19:38:30 +02:00
parent 11e63f7758
commit 6ddb120c94
11 changed files with 681 additions and 25 deletions

View File

@@ -154,6 +154,19 @@ button:disabled { opacity: 0.5; cursor: not-allowed; }
background: #f8fafc;
padding: 1rem;
}
.admin-start-controls {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.75rem;
margin-top: 0.9rem;
}
.admin-start-controls label {
display: flex;
flex-direction: column;
gap: 0.35rem;
font-size: 0.9rem;
font-weight: 700;
}
.admin-preview {
display: flex;
flex-direction: column;
@@ -180,6 +193,30 @@ button:disabled { opacity: 0.5; cursor: not-allowed; }
border-radius: 12px;
background: white;
}
.admin-log-list {
display: flex;
flex-direction: column;
gap: 0.65rem;
}
.admin-log-card {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
border: 1px solid #e5e7eb;
border-radius: 12px;
background: #f8fafc;
padding: 0.75rem;
}
.admin-log-card div {
display: flex;
flex-direction: column;
gap: 0.25rem;
}
.admin-log-card span {
color: #64748b;
font-size: 0.9rem;
}
.session-user {
margin-left: auto;
display: flex;