firq-dev-website/src/components/navbar/navbar.astro

38 lines
710 B
Text
Raw Normal View History

2023-03-04 13:48:57 +01:00
---
2024-10-30 20:28:45 +01:00
import NavbarDesktop from './navbarDesktop.astro'
import NavbarLogo from './navbarLogo.astro'
import NavbarMobile from './navbarMobile.astro'
2023-03-04 13:48:57 +01:00
---
<header>
2024-10-30 20:28:45 +01:00
<NavbarLogo/>
<NavbarDesktop>
2024-07-19 22:52:15 +02:00
<slot name="desktop" />
2024-10-30 20:28:45 +01:00
</NavbarDesktop>
<NavbarMobile>
<slot name="mobile" />
</NavbarMobile>
2023-03-04 13:48:57 +01:00
</header>
2024-10-30 20:28:45 +01:00
<style>
2023-03-09 11:44:18 +01:00
header {
z-index: 1000;
position: sticky;
top: 0px;
2024-10-24 18:52:33 +02:00
background-color: var(--c-primary-background);
2023-03-09 11:44:18 +01:00
display: flex;
height: auto;
width: 100%;
align-items: flex-start;
line-height: 1.5em;
2024-10-24 18:52:33 +02:00
border-bottom: 2px solid var(--c-accent-1) ;
2023-03-09 11:44:18 +01:00
}
2023-12-29 22:57:30 +01:00
2023-07-08 15:02:07 +02:00
@media (min-width: 1140px) {
2023-03-09 11:44:18 +01:00
header {
height: 64px;
align-items: center;
}
}
</style>