Files
Aran Roig 9748de4286
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 34s
repsonsive 2
2026-03-22 01:59:30 +01:00

23 lines
487 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: 400px;
@media screen and (max-width: 600px) {
margin-top: -10px;
}
}
</style>