21 lines
316 B
Vue
21 lines
316 B
Vue
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="detail-rows">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.detail-rows {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.35rem;
|
|
margin-top: 0.5rem;
|
|
border-top: 1px solid var(--border);
|
|
padding-top: 0.75rem;
|
|
}
|
|
</style>
|