frontend/components/UserInterface/VerticalSpacer.vue
JustTemmie b3ef59ac48
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
feat: finish up the profile popup
2025-07-18 13:03:20 +02:00

12 lines
212 B
Vue

<template>
<span class="vertical-spacer"></span>
</template>
<style scoped>
.vertical-spacer {
height: 0.2dvh;
display: block;
margin: 0.8dvh 0.2dvw;
background-color: var(--padding-color);
}
</style>