We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4504469 commit a1950beCopy full SHA for a1950be
css-layout-api/EXPLAINER.md
@@ -99,8 +99,8 @@ registerLayout('centering', class extends Layout {
99
for (let child of children) {
100
const childFragment = yield child.layoutNextFragment(childConstraintSpace);
101
102
- maxChildInlineSize = Math.max(maxChildInlineSize, childFragments.inlineSize);
103
- maxChildBlockSize = Math.max(maxChildBlockSize, childFragments.blockSize);
+ maxChildInlineSize = Math.max(maxChildInlineSize, childFragment.inlineSize);
+ maxChildBlockSize = Math.max(maxChildBlockSize, childFragment.blockSize);
104
childFragments.push(childFragment);
105
}
106
0 commit comments