mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-27 17:35:07 +01:00
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:
parent
d81a050d73
commit
aa31d041f3
1 changed files with 9 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue