fix: many

This commit is contained in:
opbnq-q
2025-03-08 22:32:53 -08:00
parent 9ea91f3b40
commit 3288577dc1
14 changed files with 86 additions and 34 deletions

View File

@@ -0,0 +1,15 @@
<script setup lang="ts">
defineProps<{
checked: boolean
}>()
</script>
<template>
<input type="checkbox" class="cursor-pointer" :checked />
</template>
<style scoped>
input[type="checkbox"] {
accent-color: var(--p-primary-color);
}
</style>