22 lines
367 B
Text
22 lines
367 B
Text
---
|
|
import Row from './Row.astro'
|
|
|
|
interface Props {
|
|
transparent?: boolean
|
|
}
|
|
|
|
const { transparent } = Astro.props
|
|
---
|
|
|
|
<nav class="dasig-nav" role="navigation" aria-label="main navigation">
|
|
<Row content="split"><slot /></Row>
|
|
</nav>
|
|
|
|
<style lang="sass">
|
|
.dasig-nav
|
|
position: fixed
|
|
top: 0
|
|
width: 100%
|
|
padding: 1rem 0
|
|
// margin: 5rem
|
|
</style>
|