1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:27:35 +00:00

LibWeb: Tweak default style for <hr> to use em units for margin values

This commit is contained in:
Andreas Kling 2020-06-28 12:57:42 +02:00
parent 9e642827fc
commit fd32f24753

View file

@ -92,8 +92,8 @@ a:hover {
}
hr {
margin-top: 4px;
margin-bottom: 4px;
margin-top: 0.5em;
margin-bottom: 0.5em;
border: 1px inset #888888;
}