Files
web/apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/layout.module.css
Chuma Mcphoy (We Ahead) 6965effcc2 Merged in feat/LOY-261-Remove-Sidebar-From-MyPages (pull request #2380)
Feat/LOY-261 Remove Sidebar From MyPages

* feat(LOY-261): remove sidebar from my pages

* refactor(LOY-261): move SASLevelUpgradeCheck to my-pages layout and remove unused code

* chore(LOY-261): remove console logs

* fix(LOY-261): remove sidebar and center content in Loyalty Pages when logged in

* fix(LOY-261): better class naming for content width


Approved-by: Christian Andolf
Approved-by: Erik Tiekstra
2025-06-26 14:25:17 +00:00

23 lines
435 B
CSS

.container {
background-color: var(--Background-Primary);
}
.layout {
display: grid;
font-family: var(--typography-Body-Regular-fontFamily);
grid-template-rows: auto 1fr;
min-height: 100dvh;
max-width: var(--max-width-page);
margin: 0 auto;
width: 100%;
}
.content {
display: grid;
padding-bottom: var(--Spacing-x9);
position: relative;
max-width: var(--max-width-content);
margin: 0 auto;
width: 100%;
}