library/frontend/components/Table/TableTh.vue
2023-07-15 14:02:49 -07:00

19 lines
344 B
Vue

<script setup lang="ts">
defineProps<{ actions?: boolean }>()
</script>
<template>
<th :class="{actions: actions}">
<slot />
</th>
</template>
<style lang="postcss">
th {
@apply pb-3.5 px-3;
@apply font-bold text-left;
@apply first-of-type:ps-0;
@apply last-of-type:ps-3.5 last-of-type:pe-0 last-of-type:relative;
}
</style>