jointrashposs/components/content/Danger.vue
kakkokari-gtyih 7ea64f5596 (add) blog
2023-07-11 02:54:13 +09:00

15 lines
311 B
Vue

<template>
<div class="root bg-red-100 dark:bg-red-900 dark:bg-opacity-25 border border-red-200 dark:border-red-500 rounded-lg px-4 py-3 mb-4">
<slot></slot>
</div>
</template>
<script setup lang="ts">
</script>
<style scoped>
.root > ::v-deep(*:last-child) {
margin-bottom: 0;
}
</style>