Files
aranroig.com/frontend/app/components/parts/site_options/SiteOptions.vue
BinarySandia04 2cdc857b9a
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 28s
Mobile responsive thanks ai slop
2026-06-10 17:47:15 +02:00

28 lines
572 B
Vue

<script setup lang="ts">
import LanguageSelector from './LanguageSelector.vue';
import ThemeSelector from './ThemeSelector.vue';
</script>
<template>
<div class="site-options">
<LanguageSelector></LanguageSelector>
<ThemeSelector></ThemeSelector>
</div>
</template>
<style lang="scss" scoped>
.site-options {
display: flex;
justify-content: right;
width: auto;
@media screen and (max-width: 900px) {
gap: 8px;
}
@media screen and (max-width: 600px) {
margin-top: -10px;
gap: 4px;
}
}
</style>