13 lines
256 B
SCSS
13 lines
256 B
SCSS
/*
|
|
* SPDX-FileCopyrightText: 2021 Johannes Loher
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
.ds4-checks {
|
|
column-gap: 2em;
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(11em, 1fr));
|
|
row-gap: 0.25em;
|
|
white-space: nowrap;
|
|
}
|