Browse Source

fix: Added styling for list items

pull/7046/head
Muhammed Mustafa 10 months ago
parent
commit
22ca9d83a7
  1. 22
      packages/nc-gui/components/cell/RichText.vue

22
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;
}
}
}
</style>

Loading…
Cancel
Save