mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
21 lines
303 B
Vue
21 lines
303 B
Vue
<script setup lang="ts">
|
|
import Maintenance from './components/maintenance.vue';
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<Maintenance />
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
:root {
|
|
--space-base: 16px;
|
|
--space-small: 8px;
|
|
--space-x-small: 6px;
|
|
--space-xx-small: 4px;
|
|
--color-locale-menu: #333;
|
|
}
|
|
</style>
|