labels added
All checks were successful
/ Make image (push) Successful in 47s

This commit is contained in:
nquidox 2025-10-29 20:58:47 +03:00
parent 53558c4b46
commit c74032d1d0
16 changed files with 702 additions and 44 deletions

View file

@ -0,0 +1,27 @@
<script setup>
const props = defineProps({
color: {
type: String,
default: '#EF2D56FF'
},
bg_color: {
type: String,
default: '#FFFFFF'
}
})
</script>
<template>
<span class="color-dot" :style="{ borderColor: color, backgroundColor: bg_color }"></span>
</template>
<style scoped>
.color-dot {
display: inline-block;
width: 8px;
height: 8px;
border-radius: 50%;
border: 1px solid; /* чтобы border-color работал */
vertical-align: middle;
}
</style>