1
0

feat: show the task color bubble everywhere

This commit is contained in:
kolaente
2022-09-15 13:56:14 +02:00
parent bdf992c9bf
commit 2683fec0a6
4 changed files with 64 additions and 24 deletions

View File

@ -0,0 +1,26 @@
<template>
<span
:style="{backgroundColor: color }"
class="color-bubble"
></span>
</template>
<script lang="ts" setup>
defineProps({
color: {
type: String,
required: true,
},
})
</script>
<style scoped>
.color-bubble {
display: inline-block;
border-radius: 100%;
margin-right: 4px;
height: 10px;
width: 10px;
flex-shrink: 0;
}
</style>