13 lines
278 B
Vue
13 lines
278 B
Vue
<template>
|
|
<dark-mode-container class="global-tab flex-y-center h-full"></dark-mode-container>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { DarkModeContainer } from '@/components';
|
|
</script>
|
|
<style scoped>
|
|
.global-tab {
|
|
box-shadow: 0 1px 2px rgb(0 21 41 / 8%);
|
|
}
|
|
</style>
|