mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-08-03 19:17:07 -04:00
43 lines
1.2 KiB
SCSS
43 lines
1.2 KiB
SCSS
@import "assets/variables";
|
|
|
|
.nouns-table {
|
|
.row-header {
|
|
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) 3em;
|
|
}
|
|
|
|
.row-content {
|
|
grid:
|
|
"mascLabel masc mascPl"
|
|
"femLabel fem femPl"
|
|
"neutrLabel neutr neutrPl"
|
|
"nbLabel nb nbPl"
|
|
"sources sources sources"
|
|
"buttons buttons buttons"
|
|
/ auto minmax(0, 1fr) minmax(0, 1fr);
|
|
|
|
@include media-breakpoint-up('md', $grid-breakpoints) {
|
|
grid:
|
|
"masc fem neutr buttons"
|
|
"mascPl femPl neutrPl buttons"
|
|
"sources sources sources buttons"
|
|
/ minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) 3em;
|
|
}
|
|
}
|
|
}
|
|
|
|
.nouns-table-nonbinary {
|
|
.row-header {
|
|
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) 3em;
|
|
}
|
|
|
|
.row-content {
|
|
@include media-breakpoint-up('md', $grid-breakpoints) {
|
|
grid:
|
|
"masc fem neutr nb buttons"
|
|
"mascPl femPl neutrPl nbPl buttons"
|
|
"sources sources sources sources buttons"
|
|
/ minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) 3em;
|
|
}
|
|
}
|
|
}
|