summaryrefslogtreecommitdiffstats
path: root/docs/assets
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2021-04-22 15:49:52 -0700
committerGitHub <noreply@github.com>2021-04-22 15:49:52 -0700
commit7983aaee6747e7b7840593c2fc25ee56d9699edc (patch)
treecf563f230e0ac1079256ddc7201ce3e8f1a5f459 /docs/assets
parente4f23ffde2272f152d00d82eac6f27d2997baf99 (diff)
Fix errors in matrix-layout documentation (#1809)
* Fix errors in matrix-layout documentation * Fixup
Diffstat (limited to 'docs/assets')
-rw-r--r--docs/assets/css/style.scss10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/assets/css/style.scss b/docs/assets/css/style.scss
index df8ca8272..c8cb75a7c 100644
--- a/docs/assets/css/style.scss
+++ b/docs/assets/css/style.scss
@@ -6,3 +6,13 @@ blockquote p {
font-size: 16px;
font-weight: 600;
}
+
+ol {
+ counter-reset: section;
+ list-style-type: none;
+}
+
+li:before {
+ counter-increment: section;
+ content: counters(section, ".") " ";
+} \ No newline at end of file