feat: HorizontalSpacer

This commit is contained in:
Twig 2025-07-18 11:36:06 +02:00
parent 36444664c2
commit 0ea12e7f00
No known key found for this signature in database

View file

@ -0,0 +1,12 @@
<template>
<span class="horizontal-spacer"></span>
</template>
<style scoped>
.spacer {
display: block;
width: 0.2dvh;
margin: 0.2dvh 0.8dvw;
background-color: var(--padding-color);
}
</style>