mirror of https://github.com/docker/docs.git
style: update nested ol (#22057)
<!--Delete sections as needed --> ## Description Update style for nested ordered lists to use numbers, then letters, then roman numerals. Example: https://deploy-preview-22057--docsdocker.netlify.app/contribute/components/lists/ https://docs.docker.com/contribute/components/lists/  ## Related issues or tickets <!-- Related issues, pull requests, or Jira tickets --> ## Reviews - [ ] Editorial review Signed-off-by: Craig <craig.osterhout@docker.com>
This commit is contained in:
parent
115be657f1
commit
6827d48e39
|
@ -0,0 +1,12 @@
|
||||||
|
.prose ol {
|
||||||
|
list-style-type: decimal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.prose ol ol {
|
||||||
|
list-style-type: lower-alpha;
|
||||||
|
}
|
||||||
|
|
||||||
|
.prose ol ol ol {
|
||||||
|
list-style-type: lower-roman;
|
||||||
|
}
|
||||||
|
|
|
@ -13,3 +13,4 @@
|
||||||
@import "/assets/css/syntax-light";
|
@import "/assets/css/syntax-light";
|
||||||
@import "/assets/css/syntax-dark";
|
@import "/assets/css/syntax-dark";
|
||||||
@import "/assets/css/icons";
|
@import "/assets/css/icons";
|
||||||
|
@import "/assets/css/lists";
|
||||||
|
|
Loading…
Reference in New Issue