diff --git a/src/components/CommunityItems.vue b/src/components/CommunityItems.vue index 21ec0e22f..857ca51a3 100644 --- a/src/components/CommunityItems.vue +++ b/src/components/CommunityItems.vue @@ -44,7 +44,7 @@ class="col-md-2 pl-medium" :style="$store.state.isMobile ? 'padding-left: 4.7rem; margin-top: 1rem;' : ''">

- Other + {{ $t('common.other') }}

diff --git a/src/components/NavMobile.vue b/src/components/NavMobile.vue index 645cf477a..41b6d5fe3 100644 --- a/src/components/NavMobile.vue +++ b/src/components/NavMobile.vue @@ -211,7 +211,7 @@ export default { left: 50%; } -@media screen and (min-width: 769px) { +@media screen and (min-width: 951px) { .navbar, .menu { display: none; } diff --git a/src/components/Navbar.vue b/src/components/Navbar.vue index 4d72d82cd..89249822f 100644 --- a/src/components/Navbar.vue +++ b/src/components/Navbar.vue @@ -7,15 +7,16 @@ v-for="item in $tm('navbar.items')" :key="item.name" :name="`go-to-${item.name}`" - class="pl-small pr-small color-white font-title type-uppercase type-no-underline border-right-white" + class="pl-small pr-small color-white font-title type-uppercase type-no-underline border-right-white type-small" @click="itemClick(item.id)"> {{ item.name }}
@@ -42,17 +43,17 @@
- +
import NewTabIcon from './icons/NewTabIcon.vue' +import GlobeIcon from './icons/GlobeIcon.vue' export default { name: 'Navbar', components: { - NewTabIcon + NewTabIcon, + GlobeIcon }, data: () => ({ navSticky: false, diff --git a/src/components/PageFooter.vue b/src/components/PageFooter.vue index ac288092e..9b86bcfcd 100644 --- a/src/components/PageFooter.vue +++ b/src/components/PageFooter.vue @@ -19,14 +19,14 @@ Finland
- Contact + {{ $t('footer.contact') }}

- Community + {{ $t('footer.community') }}

@@ -57,37 +57,18 @@

- Instructions + {{ $t('footer.instructions.title') }}

-
- - - -
-
- +
- Privacy Policy + {{ $t('footer.privacyPolicy') }}
- Code of Conduct + {{ $t('footer.coc') }}
@@ -138,12 +119,12 @@