All checks were successful
Build and Deploy Nuxt / build (push) Successful in 34s
23 lines
487 B
Vue
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> |