Files
honey-fe/src/routes/-/RootLayout/RootLayout.module.css

22 lines
480 B
CSS
Raw Normal View History

2026-03-21 02:56:15 +02:00
@layer base {
.rootLayout {
position: relative;
height: 100%;
width: 100%;
background-image: url("./assets/main-bg.svg");
background-size: auto 101%;
background-position: center;
2026-03-21 19:50:29 +02:00
.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);
}
2026-03-21 02:56:15 +02:00
}
}