diff --git a/src/assets/nav-items.css b/src/assets/nav-items.css index 795dea3..34b7c54 100644 --- a/src/assets/nav-items.css +++ b/src/assets/nav-items.css @@ -1,6 +1,14 @@ .nav-item { - @apply flex flex-col items-center p-4 lg:justify-center hover:bg-surface-800 rounded-border text-surface-300 hover:text-white duration-150 transition-colors; + align-items: center; + display: flex; + flex-direction: column; + padding: 16px; + @apply hover:bg-surface-800 rounded-border text-surface-300 hover:text-white; span { - @apply font-medium inline text-base lg:text-xs lg:block; + @apply text-base; + text-align: center; } } +.nav-icon { + @apply text-base; +} diff --git a/src/components/Navigation.vue b/src/components/Navigation.vue index ce55bcf..4feef0e 100644 --- a/src/components/Navigation.vue +++ b/src/components/Navigation.vue @@ -32,9 +32,6 @@