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

LibWeb: Correct CSS initial values for min-width and min-height

The initial value for these is auto, not 0.
This commit is contained in:
Andreas Kling 2021-08-26 12:14:48 +02:00
parent cf8f1c5a5f
commit 243e9a8b4a

View file

@ -346,11 +346,11 @@
}, },
"min-height": { "min-height": {
"inherited": false, "inherited": false,
"initial": "0" "initial": "auto"
}, },
"min-width": { "min-width": {
"inherited": false, "inherited": false,
"initial": "0" "initial": "auto"
}, },
"opacity": { "opacity": {
"inherited": false, "inherited": false,