18 lines
326 B
Vue
18 lines
326 B
Vue
<script setup lang="ts">
|
|
import PageLayout from '@/components/PageLayout.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<page-layout mode="admin" />
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
#container > [class^='col'] > * {
|
|
border: 1px solid $separator-color;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#container-header {
|
|
background-color: #fafafa;
|
|
}
|
|
</style>
|