feat: add LanguageButton component

This commit is contained in:
Sebin Nyshkim 2023-03-27 23:44:54 +02:00
parent b3a288e281
commit 20c7a512ed

View file

@ -0,0 +1,22 @@
<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>