diff --git a/CHANGELOG.md b/CHANGELOG.md index 268f38d8..0a4e12a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ The format is based on Keep a Changelog, and this project adheres to Semantic Ve - Add cover image for CDC-RFA-IP-25-0007 - Add cover image for CMS-2V2-25-001 - Also add inline images +- Add utility classes for different list counters ### Changed diff --git a/bloom_nofos/bloom_nofos/static/theme-base.css b/bloom_nofos/bloom_nofos/static/theme-base.css index e5fd6a6d..d97cd3b1 100644 --- a/bloom_nofos/bloom_nofos/static/theme-base.css +++ b/bloom_nofos/bloom_nofos/static/theme-base.css @@ -147,6 +147,22 @@ h2 { /* Utility classes */ +.list-lower-roman { + list-style-type: lower-roman; +} + +.list-upper-roman { + list-style-type: upper-roman; +} + +.list-lower-alpha { + list-style-type: lower-alpha; +} + +.list-upper-alpha { + list-style-type: upper-alpha; +} + .w-100, .w-full { width: 100%;