Quellcode durchsuchen

Add styles for nested lists

ApisNecros vor 2 Jahren
Ursprung
Commit
0b94959b04
1 geänderte Dateien mit 6 neuen und 0 gelöschten Zeilen
  1. 6 0
      static/css/base.css

+ 6 - 0
static/css/base.css

@@ -56,6 +56,12 @@
     li > ul {
         @apply pl-4;
     }
+    li > ul {
+        list-style-type: circle;
+    }
+    li > ol {
+        list-style-type: lower-roman;
+    }
 
     pre {
         @apply w-full my-2 p-2 bg-gray-50 rounded;