forked from nikita/muzika-gromche
17 lines
259 B
Vue
17 lines
259 B
Vue
|
|
<script setup lang="ts">
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<hr class="card-separator">
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<style scoped>
|
||
|
|
@reference "tailwindcss";
|
||
|
|
|
||
|
|
.card-separator {
|
||
|
|
@apply my-0.5;
|
||
|
|
min-height: var(--card-separator-width);
|
||
|
|
color: var(--card-separator-color);
|
||
|
|
}
|
||
|
|
</style>
|