From aa31d041f3125ebab8dc12db65ca8ea8e1f4fef4 Mon Sep 17 00:00:00 2001 From: Debanjum Singh Solanky Date: Tue, 10 Sep 2024 17:45:04 -0700 Subject: [PATCH] Style list html elements by default on web app to improve readability Previously list styling was turned off for some reason in Next.js --- src/interface/web/app/globals.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/interface/web/app/globals.css b/src/interface/web/app/globals.css index 8461026b..c0215a67 100644 --- a/src/interface/web/app/globals.css +++ b/src/interface/web/app/globals.css @@ -333,6 +333,15 @@ @apply border-border; } + /* Style lists by default. Overrides no list styling being applied previously. */ + ul, + ol, + menu { + list-style: revert; + padding: revert; + margin: revert; + } + body { @apply bg-background text-foreground; }