chore: clean ui, profile
This commit is contained in:
parent
1ceaa772bb
commit
59d4d7d099
13
src/App.vue
13
src/App.vue
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<component :is="layout" class="px-4 py-10 text-center text-gray-700 dark:text-gray-200">
|
<component :is="layout" class="text-gray-700 dark:text-gray-200">
|
||||||
<router-view />
|
<router-view />
|
||||||
</component>
|
</component>
|
||||||
</template>
|
</template>
|
||||||
@ -7,11 +7,17 @@
|
|||||||
// <Footer />
|
// <Footer />
|
||||||
import { computed } from 'vue'
|
import { computed } from 'vue'
|
||||||
import { useRouter } from 'vue-router'
|
import { useRouter } from 'vue-router'
|
||||||
|
import { useStore } from 'vuex'
|
||||||
|
import { AppDefsAction } from '~/store/types'
|
||||||
// import AppLayout from '~/layouts/AppLayout.vue'
|
// import AppLayout from '~/layouts/AppLayout.vue'
|
||||||
import { useHead } from '@vueuse/head'
|
import { useHead } from '@vueuse/head'
|
||||||
// https://github.com/vueuse/head
|
// https://github.com/vueuse/head
|
||||||
// you can use this to manipulate the document head in any components,
|
// you can use this to manipulate the document head in any components,
|
||||||
// they will be rendered correctly in the html results with vite-ssg
|
// they will be rendered correctly in the html results with vite-ssg
|
||||||
|
|
||||||
|
import defs from '../assets/defs.json'
|
||||||
|
|
||||||
|
const store = useStore()
|
||||||
useHead({
|
useHead({
|
||||||
title: 'Status',
|
title: 'Status',
|
||||||
meta: [
|
meta: [
|
||||||
@ -23,4 +29,9 @@ const appLayout = 'AppLayout'
|
|||||||
const layout = computed(() => {
|
const layout = computed(() => {
|
||||||
return `${currentRoute.value.meta.layout || appLayout}`
|
return `${currentRoute.value.meta.layout || appLayout}`
|
||||||
})
|
})
|
||||||
|
onBeforeMount(() => {
|
||||||
|
if (defs) {
|
||||||
|
store.dispatch(AppDefsAction.addDefs, { key: 'ui', defs })
|
||||||
|
}
|
||||||
|
})
|
||||||
</script>
|
</script>
|
@ -10,6 +10,24 @@ html.dark {
|
|||||||
background: #121212;
|
background: #121212;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.markdown-body {
|
||||||
|
margin: 2em;
|
||||||
|
}
|
||||||
|
.markdown-body p {
|
||||||
|
margin-top: 1em;;
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown-body pre {
|
||||||
|
padding: 2em;
|
||||||
|
background: rgba(243,244,246);
|
||||||
|
}
|
||||||
|
.dark .markdown-body pre {
|
||||||
|
background: rgba(75, 85, 99,var(--tw-bg-opacity))
|
||||||
|
}
|
||||||
|
.markdown-body a {
|
||||||
|
color: rgba(37, 99, 235);
|
||||||
|
}
|
||||||
.btn {
|
.btn {
|
||||||
@apply px-4 py-1 rounded inline-block
|
@apply px-4 py-1 rounded inline-block
|
||||||
bg-teal-600 text-white cursor-pointer
|
bg-teal-600 text-white cursor-pointer
|
||||||
|
Loading…
Reference in New Issue
Block a user