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

23 lines
502 B
CSS
Raw Normal View History

2026-03-21 02:56:15 +02:00
@layer base {
.rootLayout {
position: relative;
height: 100%;
width: 100%;
2026-03-22 16:26:38 +02:00
background-image: url("./assets/main-bg.png");
2026-03-21 02:56:15 +02:00
background-size: auto 101%;
background-position: center;
2026-03-22 13:25:49 +02:00
overflow: hidden;
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
}
}