diff --git a/assets/built/styles.css b/assets/built/styles.css index 6b17492..5505cfd 100644 --- a/assets/built/styles.css +++ b/assets/built/styles.css @@ -718,6 +718,56 @@ footer { padding-right: 1rem; } +.nav { + display: none; + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + width: 100%; + display: block; + margin-top: 0.5rem; + display: none; +} + +.nav li { + display: -webkit-box; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + height: 3rem; + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: start; + justify-content: flex-start; + border-color: #fff; + border-top-width: 1px; + border-bottom-width: 1px; + margin-top: 0; + margin-bottom: 0; + padding-top: 0.5rem; + padding-bottom: 0.5rem; + color: #fff; + font-size: 0.875rem; +} + +@media (min-width: 768px) { + .nav { + display: block; + width: auto; + } + + .nav-li { + -webkit-box-pack: center; + justify-content: center; + border-style: none; + margin-top: 0; + margin-bottom: 0; + } +} + .container{ width: 100%; } diff --git a/assets/css/styles.css b/assets/css/styles.css index 7548da3..82b0440 100644 --- a/assets/css/styles.css +++ b/assets/css/styles.css @@ -59,6 +59,22 @@ footer { @apply py-4 px-4; } +.nav { + @apply hidden flex flex-col w-full block mt-2; + display: none; +} +.nav li { + @apply flex flex-row h-12 items-center justify-start border-white border-t border-b my-0 py-2 text-white text-sm; + +} +@screen md { + .nav { + @apply block w-auto; + } + .nav-li { + @apply justify-center border-none my-0; + } +} @tailwind components; @tailwind utilities; diff --git a/default.hbs b/default.hbs index 74c716c..8b72ffc 100644 --- a/default.hbs +++ b/default.hbs @@ -30,15 +30,7 @@
- + {{navigation}} {{{body}}} @@ -74,7 +66,7 @@