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