Question
Maintain child sizing of elements when the parent element's layout mode changes into grid or auto layout.
Example:
I have a bunch of elements that intentionally have a fixed height and width applied to them.
I want to put them in a grid.
When I do so - their width and height changes to fill. This is an unwanted destructive change and should be fixed or at least have a way to override.
Is this how flex works in css? I don’t think it is - using display: flex - children keep their intrinsic size unless you explicitly opt into growing.
