frontend/components/UserInterface/VerticalSpacer.vue
JustTemmie 15e5a21277
Some checks failed
ci/woodpecker/push/build-and-publish Pipeline failed
refactor: try sorting components into sub-folders
2025-07-10 22:47:52 +02:00

21 lines
343 B
Vue

<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>