Files
mixtape/zero.Backoffice.UI/app/dashboard.vue
T

27 lines
407 B
Vue
Raw Normal View History

2021-12-21 15:51:26 +01:00
<template>
2022-01-11 13:18:03 +01:00
<div class="dashboard">hi zero</div>
2021-12-21 15:51:26 +01:00
</template>
<script lang="ts">
export default {
2022-01-11 13:18:03 +01:00
2021-12-21 15:51:26 +01:00
}
2022-01-11 13:18:03 +01:00
</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>