library/frontend/components/Table/Td.vue

23 lines
300 B
Vue
Raw Normal View History

2023-07-13 14:29:43 -07:00
<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>