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

LibWeb: Make <option> elements display:none in the default CSS for now

This commit is contained in:
Andreas Kling 2021-03-14 17:02:55 +01:00
parent 8062fc711c
commit c7d1f73990

View file

@ -205,3 +205,7 @@ input[type=text] {
min-width: 80px;
min-height: 16px;
}
option {
display: none;
}