fix team lag

This commit is contained in:
larssand
2026-03-15 14:38:51 +01:00
parent 3dd2b8cbfd
commit a6e1f4c89c
2 changed files with 258 additions and 5 deletions

View File

@@ -609,6 +609,16 @@ select:focus {
margin: 0 0 10px;
}
.table-primary {
font-weight: 700;
}
.table-subnote {
margin-top: 4px;
color: var(--muted);
font-size: 0.8rem;
}
.grid-editor-toolbar {
display: flex;
justify-content: space-between;
@@ -881,6 +891,49 @@ select:focus {
gap: 16px;
}
.overlay-team-layout {
display: grid;
gap: 18px;
}
.overlay-team-podium {
border: 1px solid var(--line);
border-radius: 18px;
padding: 16px;
background: rgba(7, 12, 20, 0.82);
box-shadow: var(--shadow);
}
.overlay-team-podium-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 14px;
}
.overlay-team-card {
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 16px;
padding: 16px;
background: rgba(255, 255, 255, 0.03);
display: grid;
gap: 10px;
}
.overlay-team-card strong {
font-family: Orbitron, sans-serif;
font-size: clamp(1.2rem, 2vw, 1.9rem);
}
.overlay-team-card p,
.overlay-team-card small {
margin: 0;
}
.overlay-team-card-1 {
border-color: rgba(225, 6, 0, 0.45);
background: linear-gradient(135deg, rgba(225, 6, 0, 0.12), rgba(255, 255, 255, 0.03));
}
.overlay-table-wrap,
.overlay-side-card,
.overlay-empty {
@@ -1268,6 +1321,10 @@ select:focus {
grid-template-columns: 1fr;
}
.overlay-team-podium-grid {
grid-template-columns: 1fr;
}
.overlay-header {
align-items: flex-start;
flex-direction: column;