67 lines
1.2 KiB
Vue

<template>
<button class="VPSwitch" type="button" role="switch">
<span class="check">
<span class="icon" v-if="$slots.default">
<slot />
</span>
</span>
</button>
</template>
<style scoped>
.VPSwitch {
position: relative;
border-radius: 11px;
display: block;
width: 40px;
height: 40px;
flex-shrink: 0;
/* border: 1px solid var(--vp-c-divider); */
/* background-color: var(--vp-c-bg-mute); */
transition: border-color 0.25s, background-color 0.25s;
}
.VPSwitch:hover {
/* border-color: var(--vp-c-gray); */
}
.check {
position: absolute;
top: 5px;
left: 5px;
width: 30px;
height: 30px;
border-radius: 50%;
/* background-color: var(--vp-c-white);
box-shadow: var(--vp-shadow-1); */
transition: background-color 0.25s, transform 0.25s;
}
.dark .check {
/* background-color: var(--vp-c-black); */
}
.icon {
position: relative;
display: block;
width: 30px;
height: 30px;
border-radius: 50%;
overflow: hidden;
}
.icon :deep(svg) {
position: absolute;
top: 3px;
left: 3px;
width: 24px;
height: 24px;
fill: var(--vp-c-text-2);
}
.dark .icon :deep(svg) {
fill: var(--vp-c-text-1);
transition: opacity 0.25s;
}
</style>