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:
parent
cf8f1c5a5f
commit
243e9a8b4a
Notes:
sideshowbarker
2024-07-18 05:16:43 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/243e9a8b4a3
1 changed files with 2 additions and 2 deletions
|
@ -346,11 +346,11 @@
|
|||
},
|
||||
"min-height": {
|
||||
"inherited": false,
|
||||
"initial": "0"
|
||||
"initial": "auto"
|
||||
},
|
||||
"min-width": {
|
||||
"inherited": false,
|
||||
"initial": "0"
|
||||
"initial": "auto"
|
||||
},
|
||||
"opacity": {
|
||||
"inherited": false,
|
||||
|
|
Loading…
Add table
Reference in a new issue