Style list html elements by default on web app to improve readability

Previously list styling was turned off for some reason in Next.js
This commit is contained in:
Debanjum Singh Solanky 2024-09-10 17:45:04 -07:00
parent d81a050d73
commit aa31d041f3

View file

@ -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;
}