mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 02:16:48 +00:00
fix: Added styling for list items
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user