Polestar/src/MobileNavigation.astro

31 lines
762 B
Text
Raw Normal View History

2024-09-07 02:46:27 -04:00
<div class="mobile-navigation">
2024-11-25 16:32:37 -05:00
<slot name="items"/>
2024-09-07 02:46:27 -04:00
</div>
2024-11-25 16:32:37 -05:00
<style lang="scss" is:global>
2024-09-07 02:46:27 -04:00
.mobile-navigation {
position: fixed;
bottom: 0px;
left: 0px;
width: 100%;
2024-11-25 16:32:37 -05:00
color: white;
backdrop-filter: blur(24px) brightness(0.2) contrast(0.8);
padding: 0px;
z-index: 5;
display: grid;
grid-template-columns: auto auto auto auto;
justify-items: stretch;
align-items: baseline;
2024-09-07 02:46:27 -04:00
justify-content: space-evenly;
a {
color: white;
text-decoration: none;
display: flex;
2024-11-25 16:32:37 -05:00
flex-direction: column;
2024-09-07 02:46:27 -04:00
align-items: center;
gap: 12px;
2024-11-25 16:32:37 -05:00
padding: 24px 0px;
2024-09-07 02:46:27 -04:00
}
}
2024-11-25 16:32:37 -05:00
</style>