diff --git a/packages/nc-gui/components/cell/RichText.vue b/packages/nc-gui/components/cell/RichText.vue index ef0db2e77f..d7adae45e0 100644 --- a/packages/nc-gui/components/cell/RichText.vue +++ b/packages/nc-gui/components/cell/RichText.vue @@ -76,5 +76,27 @@ onMounted(() => { // remove all border outline: none; } + + ul { + @apply ml-4; + li { + list-style-type: disc; + } + } + + ol { + @apply -ml-6; + li { + list-style-type: decimal; + } + } + + ul[data-type='taskList'] { + @apply ml-0; + li { + @apply flex flex-row items-baseline gap-x-2; + list-style-type: none; + } + } }