File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -2219,28 +2219,24 @@ def _resolve_extrema(
2219
2219
min_width = styles .min_width .resolve (
2220
2220
container - margin .totals , viewport , width_fraction
2221
2221
)
2222
-
2223
2222
if is_border_box :
2224
2223
min_width -= gutter .width
2225
2224
if styles .max_width is not None :
2226
2225
max_width = styles .max_width .resolve (
2227
2226
container - margin .totals , viewport , width_fraction
2228
2227
)
2229
-
2230
2228
if is_border_box :
2231
2229
max_width -= gutter .width
2232
2230
if styles .min_height is not None :
2233
2231
min_height = styles .min_height .resolve (
2234
2232
container - margin .totals , viewport , height_fraction
2235
2233
)
2236
-
2237
2234
if is_border_box :
2238
2235
min_height -= gutter .height
2239
2236
if styles .max_height is not None :
2240
2237
max_height = styles .max_height .resolve (
2241
2238
container - margin .totals , viewport , height_fraction
2242
2239
)
2243
-
2244
2240
if is_border_box :
2245
2241
max_height -= gutter .height
2246
2242
You can’t perform that action at this time.
0 commit comments