23 lines
300 B
Vue
23 lines
300 B
Vue
|
<script setup lang="ts">
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<td><slot /></td>
|
||
|
</template>
|
||
|
|
||
|
<style lang="postcss">
|
||
|
td {
|
||
|
@apply py-5 px-3 whitespace-nowrap;
|
||
|
|
||
|
@apply first-of-type:ps-0;
|
||
|
@apply last-of-type:pe-0 last-of-type:text-end;
|
||
|
|
||
|
div {
|
||
|
@apply mt-1;
|
||
|
|
||
|
@apply first-of-type:mt-0;
|
||
|
}
|
||
|
}
|
||
|
</style>
|