1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:17:45 +00:00

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

View file

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