mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-06 01:35:08 -05:00
26 lines
402 B
CSS
26 lines
402 B
CSS
.sectionTitle {
|
|
font-size: var(--font-xl);
|
|
border-bottom: 2px solid var(--color-bg-high);
|
|
margin-bottom: var(--s-4);
|
|
}
|
|
|
|
.componentRow {
|
|
display: grid;
|
|
align-items: center;
|
|
grid-template-columns: 200px 1fr;
|
|
gap: var(--s-4);
|
|
}
|
|
|
|
.componentRow:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.componentLabel {
|
|
color: var(--color-text-high);
|
|
font-size: var(--font-sm);
|
|
}
|
|
|
|
.componentContent {
|
|
width: 100%;
|
|
}
|