viktor-reference/src/components/LanguageButton.vue
2023-03-27 23:44:54 +02:00

22 lines
341 B
Vue

<template>
<div class="lang-button">
<slot></slot>
</div>
</template>
<style lang="scss">
.lang-button {
position: fixed;
inset: 1rem 1rem auto auto;
display: block;
max-height: 2.5rem;
min-width: 3.5rem;
z-index: 9001;
color: var(--color-text);
cursor: pointer;
svg {
fill: var(--color-text);
}
}
</style>