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
commit fd32f24753
Notes: sideshowbarker 2024-07-19 05:20:36 +09:00

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