13 lines
211 B
CSS
13 lines
211 B
CSS
.nextLevel {
|
|
align-items: center;
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.nextLevel {
|
|
gap: var(--Spacing-x1);
|
|
grid-template-columns: 1fr auto;
|
|
}
|
|
}
|