LibWeb: Add padding-left to the default UA style for <ol> and <ul>

This matches what other engines do.
This commit is contained in:
Andreas Kling 2020-12-07 21:17:59 +01:00
parent a3acbf1db2
commit 5d685c4643
Notes: sideshowbarker 2024-07-19 01:00:13 +09:00

View file

@ -188,3 +188,8 @@ blockquote {
margin-left: 25px;
margin-right: 25px;
}
ul,
ol {
padding-left: 40px;
}