Skip to content

Commit

Permalink
Add utility classes for list counters
Browse files Browse the repository at this point in the history
Sometimes we need these for 200-page NOFO documents.
  • Loading branch information
pcraig3 committed Dec 24, 2024
1 parent 30ed31e commit 805e330
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
16 changes: 16 additions & 0 deletions bloom_nofos/bloom_nofos/static/theme-base.css
Original file line number Diff line number Diff line change
Expand Up @@ -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%;
Expand Down

0 comments on commit 805e330

Please sign in to comment.