library/frontend/components/Table/index.vue

26 lines
242 B
Vue
Raw Permalink Normal View History

2023-07-13 14:29:43 -07:00
<script setup lang="ts">
</script>
<template>
2023-07-13 21:44:04 -07:00
<table>
<slot />
</table>
2023-07-13 14:29:43 -07:00
</template>
2023-07-13 17:03:49 -07:00
<style lang="postcss">
2023-07-13 14:29:43 -07:00
table {
@apply w-full;
}
2023-07-13 17:03:49 -07:00
.actions {
@apply text-end;
2023-07-13 21:44:04 -07:00
& > * {
2023-07-13 17:03:49 -07:00
@apply me-3;
2023-07-13 21:44:04 -07:00
@apply last:me-0;
2023-07-13 17:03:49 -07:00
}
}
2023-07-13 14:29:43 -07:00
</style>