瀏覽代碼

Add styles for nested lists

ApisNecros 2 年之前
父節點
當前提交
0b94959b04
共有 1 個文件被更改,包括 6 次插入0 次删除
  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;