feat: add table header row to Courses matching Players style (#8)

This commit is contained in:
Samuel Enocsson
2026-05-25 10:33:47 +02:00
parent 2035ae0efc
commit 75b2360e96
2 changed files with 26 additions and 0 deletions
+20
View File
@@ -162,6 +162,26 @@
transform: rotate(180deg);
}
.course-row--header {
height: 48px;
padding: 0 20px;
background: var(--paper-2);
border-bottom: 1px solid var(--line);
cursor: default;
}
.course-row--header:hover {
background: var(--paper-2);
}
.course-header-cell {
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--ink-3);
}
.course-cell {
display: flex;
flex-direction: column;