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

103 lines
1.9 KiB
CSS
Raw Normal View History

2026-03-18 03:26:43 +02:00
:root {
--navigation-height: 74px;
2026-03-18 23:06:36 +02:00
--navigation-padding: var(--tg-viewport-safe-area-inset-bottom, 0px);
--navigation-total: calc(var(--navigation-height) + var(--navigation-padding));
2026-03-18 03:26:43 +02:00
}
@layer base {
.navigation {
position: absolute;
right: 0;
bottom: 0;
left: 0;
z-index: 10;
2026-03-21 02:56:15 +02:00
max-width: 500px;
2026-03-19 01:46:34 +02:00
margin: auto;
2026-03-18 03:26:43 +02:00
display: flex;
align-items: flex-end;
justify-content: space-evenly;
overflow: hidden;
}
.bar {
width: 54px;
border-radius: 27px 27px 0 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
2026-03-18 23:06:36 +02:00
padding-bottom: var(--navigation-padding);
2026-03-21 02:56:15 +02:00
cursor: pointer;
2026-03-18 03:26:43 +02:00
}
.safeContent {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: 64px;
2026-03-19 01:46:34 +02:00
margin-top: -10px;
2026-03-18 03:26:43 +02:00
}
2026-03-19 01:46:34 +02:00
.icon {
width: 40px;
height: 40px;
2026-03-18 03:26:43 +02:00
margin-bottom: -6px;
}
.label {
2026-03-19 01:46:34 +02:00
font-size: 15px;
font-weight: 700;
2026-03-18 03:26:43 +02:00
text-align: center;
-webkit-text-stroke: 1px #331b01;
2026-03-19 01:46:34 +02:00
text-shadow: 0px 2px 2px #0000008c;
2026-03-18 03:26:43 +02:00
line-height: 1;
color: white;
}
2026-03-21 02:56:15 +02:00
.active .label {
2026-03-18 03:26:43 +02:00
color: #ffbd42;
}
2026-03-19 01:46:34 +02:00
.menuOverlay {
position: absolute;
right: 0;
bottom: calc(var(--navigation-total) + 16px);
z-index: 9;
padding-bottom: 8px;
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 8px;
overflow: hidden;
pointer-events: none;
}
.menuOverlay > * {
pointer-events: auto;
}
.menuBar {
height: 54px;
width: 94px;
border-radius: 27px 0 0 27px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
padding-right: 20px;
2026-03-21 02:56:15 +02:00
cursor: pointer;
2026-03-19 01:46:34 +02:00
}
.menuBarContent {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 54px;
height: 100%;
margin-left: -10px;
}
2026-03-18 03:26:43 +02:00
}