ruoyi-plus-soybean/src/layouts/common/GlobalHeader/index.vue

13 lines
284 B
Vue
Raw Normal View History

2022-01-08 20:49:21 +08:00
<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>