diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-18 21:42:30 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-18 21:42:30 +0100 |
| commit | db359ed29703793de351b637344bddf439285a0b (patch) | |
| tree | 8f7ede803f02aac09ed8139a7cdf55ec800149fd /public/css | |
| parent | ccdd0cb712edad90a3feba822923b1dab7b6bb4e (diff) | |
Pulls out base list style
Diffstat (limited to 'public/css')
| -rw-r--r-- | public/css/base/index.css | 3 | ||||
| -rw-r--r-- | public/css/base/list.css | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/public/css/base/index.css b/public/css/base/index.css index 169a60f..a8e9f15 100644 --- a/public/css/base/index.css +++ b/public/css/base/index.css @@ -1,2 +1,3 @@ @import './typography.css'; -@import './theme.css';
\ No newline at end of file +@import './theme.css'; +@import './list.css';
\ No newline at end of file diff --git a/public/css/base/list.css b/public/css/base/list.css new file mode 100644 index 0000000..2fd402b --- /dev/null +++ b/public/css/base/list.css @@ -0,0 +1,4 @@ +ol li { + list-style-type: decimal; + margin-inline-start: --spacing-inline-md; +}
\ No newline at end of file |
