This commit is contained in:
Sabrina Hennrich 2025-07-04 18:07:47 +02:00
parent 48ecb69816
commit 40f3744202
3 changed files with 10 additions and 6 deletions

View File

@ -1,5 +1,5 @@
<template>
<div v-if="locales.length >=2" class="languageBox" @click="toggleOpen">
<div v-show="false" v-if="locales.length >=2" class="languageBox" @click="toggleOpen">
<div v-if="!open" class="current">{{ currentLanguage }}</div>
<transition name="slide">

View File

@ -94,8 +94,8 @@ export default defineNuxtConfig({
langDir: 'locales',
locales: [
{ code: 'de', name: 'Deutsch', file: 'de.json' },
/*{ code: 'en', name: 'English', file: 'en.json' },
{ code: 'es', name: 'Español', file: 'es.json' },
{ code: 'en', name: 'English', file: 'en.json' },
/*{ code: 'es', name: 'Español', file: 'es.json' },
{ code: 'fr', name: 'Français', file: 'fr.json' },
{ code: 'it', name: 'Italiano', file: 'it.json' },
{ code: 'tr', name: 'Türkçe', file: 'tr.json' }*/

View File

@ -192,7 +192,7 @@ const logoItems = computed(() => {
margin-top: 1rem
.content
display: flex
flex-direction: column
flex-direction: row
gap: 2rem
margin: 3rem 0
.column
@ -245,8 +245,12 @@ const logoItems = computed(() => {
object-position: center center
@media screen and (min-width: $breakPointLG)
flex-direction: row
@media screen and (max-width: $breakPointLG)
.content
flex-direction: column
.column
width: 90%
min-width: 90%
.whatWeDo
position: relative