22 lines
341 B
Vue
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>
|