소스 검색

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;