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

LibWeb: Add rudimentary styling to <details> and <summary>

This commit is contained in:
Sam Atkins 2021-12-22 12:35:54 +00:00 committed by Andreas Kling
parent d702678d16
commit 2f3e24d71e

View file

@ -233,3 +233,13 @@ input[type=text] {
option {
display: none;
}
details {
display: block;
padding-left: 1em;
}
summary {
display: block;
font-weight: bold;
}