18 lines
331 B
Vue
18 lines
331 B
Vue
<script setup lang="ts">
|
|
defineOptions({ name: 'DarkModeContainer' });
|
|
|
|
interface Props {
|
|
inverted?: boolean;
|
|
}
|
|
|
|
defineProps<Props>();
|
|
</script>
|
|
|
|
<template>
|
|
<div class="bg-container text-base_text transition-300" :class="{ 'bg-inverted text-#1f1f1f': inverted }">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|