14 lines
214 B
CSS
14 lines
214 B
CSS
.points {
|
|
display: grid;
|
|
gap: var(--Spacing-x5);
|
|
text-wrap: balance;
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.points {
|
|
grid-auto-flow: column;
|
|
row-gap: 0;
|
|
column-gap: var(--Spacing-x2);
|
|
}
|
|
}
|