refactor: move spacer into it's own component

This commit is contained in:
Twig 2025-07-10 22:44:18 +02:00
parent b1a3ce9b00
commit 8a9ecaa2e2
No known key found for this signature in database

View file

@ -0,0 +1,21 @@
<template>
<span class="spacer"></span>
</template>
<script lang="ts" setup>
import type { UserResponse } from '~/types/interfaces';
const props = defineProps<{
user: UserResponse,
}>();
</script>
<style scoped>
.spacer {
height: 0.2dvh;
display: block;
margin: 0.8dvh 0.2dvw;
background-color: var(--padding-color);
}
</style>