fix: Added styling for list items

This commit is contained in:
Muhammed Mustafa
2023-11-23 11:20:34 +00:00
parent c4c886e6cf
commit 22ca9d83a7

View File

@@ -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>