Files
web/apps/scandic-web/components/Blocks/DynamicContent/MyPagesOverviewShortcuts/myPagesOverviewShortcuts.module.css
Chuma Mcphoy (We Ahead) 720a1c2734 Merged in feat/LOY-264-My-Pages-Overview-Shortcuts (pull request #2672)
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
2025-08-20 09:06:25 +00:00

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;
}