From 07dab231ce44377fcf833cca726bac2fbfe2fdb0 Mon Sep 17 00:00:00 2001 From: Camelid Date: Mon, 31 Aug 2020 19:56:09 -0700 Subject: [PATCH] Use the `disc` list style type Previously, it was the `circle` list style type, but it was determined that the `disc` list style type is in many ways a better match for Rust. --- src/styles/app.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/styles/app.scss b/src/styles/app.scss index b14f60380..baa6fac5d 100644 --- a/src/styles/app.scss +++ b/src/styles/app.scss @@ -194,6 +194,10 @@ ul, ol { padding-left: 1.2em; } +ul { + list-style-type: disc; +} + .posts { background-color: $gray; color: white;