Исправлена верстка таблицы

This commit is contained in:
DwCay
2022-10-19 10:42:35 +03:00
parent 630120856a
commit d5d56b450f
15 changed files with 346 additions and 126 deletions

View File

@@ -0,0 +1,24 @@
<template lang="pug">
.flex.box-border.px-4.items-center.gap-x-2.w-full(:style="{ minWidth : width + 'px' }")
.dot.w-2.h-2
span.text-sm(:style="{ color : color }") {{value}}
</template>
<script>
export default {
name: "TableCellBodyPriority",
props: {
value: String,
width: Number,
color: {
default: "#9294A7",
},
},
};
</script>
<style lang="sass" scoped>
.dot
background-color: var(--font-grey-color)
border-radius: 50%
</style>