Feat(LOY-264): My Pages Overview Shortcuts * feat(LOY-264): Add My Pages Shortcuts Overview Dynamic Content Component * fix(LOY-264): more semantic naming + remove comments * fix(LOY-264): new space variables * fix(LOY-264): remove unused prop Approved-by: Matilda Landström
23 lines
290 B
CSS
23 lines
290 B
CSS
.section {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: var(--Space-x4);
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.section {
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: var(--Space-x2);
|
|
}
|
|
}
|
|
|
|
.column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.shortcuts {
|
|
flex: 1;
|
|
}
|