27 lines
407 B
Vue
27 lines
407 B
Vue
<template>
|
|
<div class="dashboard">hi zero</div>
|
|
</template>
|
|
|
|
|
|
<script lang="ts">
|
|
export default {
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.dashboard
|
|
{
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
font-size: 48px;
|
|
font-weight: 100;
|
|
color: var(--color-text);
|
|
opacity: 0.2;
|
|
pointer-events: none;
|
|
user-select: none;
|
|
}
|
|
</style> |