Files
honey-fe/src/routes/-/RootLayout/RootLayout.module.css
Hewston Fox 3c646bc5ac
All checks were successful
Deploy to VPS (dist) / deploy (push) Successful in 1m40s
fix: rizna huyeta
2026-03-22 16:26:38 +02:00

23 lines
502 B
CSS

@layer base {
.rootLayout {
position: relative;
height: 100%;
width: 100%;
background-image: url("./assets/main-bg.png");
background-size: auto 101%;
background-position: center;
overflow: hidden;
.main {
height: 100%;
overflow-y: auto;
overflow-x: hidden;
--padding-x: 16px;
padding: calc(var(--header-total) + var(--padding-x)) var(--safe-right)
calc(var(--navigation-total) + var(--padding-x)) var(--safe-left);
}
}
}