frontend/components/UserInterface/VerticalSpacer.vue
2025-07-19 16:40:49 +02:00

12 lines
216 B
Vue

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