Pinafore-Web-Client-Frontend/src/routes/_components/Nav.html

58 lines
1022 B
HTML
Raw Normal View History

<nav class="main-nav">
2018-03-27 18:34:29 +02:00
<ul class="main-nav-ul">
2018-05-04 06:24:10 +02:00
{#each $navPages as navPage (navPage.href)}
<li class="main-nav-li">
<NavItem
{page}
name={navPage.name}
href={navPage.href}
svg={navPage.svg}
label={navPage.label}
/>
</li>
{/each}
2018-01-07 00:51:25 +01:00
</ul>
</nav>
<style>
.main-nav {
2018-01-12 18:01:46 +01:00
border-bottom: 1px solid var(--nav-border);
background: var(--nav-bg);
2018-01-11 07:17:15 +01:00
position: fixed;
left: 0;
right: 0;
top: 0;
z-index: 20;
contain: content; /* see https://www.w3.org/TR/2018/CR-css-contain-1-20181108/#valdef-contain-content */
2018-01-07 00:51:25 +01:00
}
2018-03-27 18:34:29 +02:00
.main-nav-ul {
2018-01-07 00:51:25 +01:00
margin: 0;
padding: 0;
2018-01-07 06:05:49 +01:00
list-style: none;
display: flex;
2018-03-27 18:34:29 +02:00
align-items: stretch;
2018-01-07 00:51:25 +01:00
}
2018-03-27 18:34:29 +02:00
.main-nav-li {
display: flex;
}
2018-02-09 03:01:00 +01:00
@media (max-width: 991px) {
2018-03-27 18:34:29 +02:00
.main-nav-li {
2018-01-29 00:53:49 +01:00
flex: 1;
2018-01-07 06:05:49 +01:00
}
2018-01-29 00:53:49 +01:00
}
2018-01-07 05:44:47 +01:00
2018-01-13 08:24:05 +01:00
</style>
<script>
import NavItem from './NavItem'
import { store } from '../_store/store'
2018-01-13 08:24:05 +01:00
export default {
store: () => store,
2018-01-13 08:24:05 +01:00
components: {
NavItem
}
}
</script>