library/frontend/components/Table/TableTh.vue

18 lines
272 B
Vue
Raw Normal View History

2023-07-13 14:29:43 -07:00
<script setup lang="ts">
</script>
<template>
<th><slot /></th>
</template>
<style lang="postcss">
th {
@apply py-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>