Skip to content

Commit

Permalink
Style list html elements by default on web app to improve readability
Browse files Browse the repository at this point in the history
Previously list styling was turned off for some reason in Next.js
  • Loading branch information
debanjum committed Sep 11, 2024
1 parent d81a050 commit aa31d04
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/interface/web/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit aa31d04

Please sign in to comment.