12 lines
216 B
CSS
12 lines
216 B
CSS
stats-tracker-multi-select {
|
|
/*
|
|
TODO: Improve styling when this isn't the tallest element in a row
|
|
*/
|
|
display: grid;
|
|
grid-template-columns: auto minmax(0, 1fr);
|
|
gap: 2px;
|
|
|
|
select {
|
|
grid-column: 1 / -1;
|
|
}
|
|
}
|