You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 6, 2025. It is now read-only.
fxLayoutGap doesn't seem to work properly with fxFlexOrder. Try the below code:
<div fxLayout="row wrap" fxLayoutGap="15px">
<div fxFlex="310px" fxFlex.xs="100" fxFlexOrder.gt-xs="2">
DIV A
</div>
<div fxFlex="calc(100%-325px)" fxFlex.xs="100" fxFlexOrder.gt-xs="1">
DIV B
</div>
</div>
In case of gt-xsDIV A is shown on right and has margin-right set to 15px, whereas DIV B is shown on left without margin right.
What is the expected behavior?
In case of gt-xs DIV A should be shown on right and should have margin-right set to 0px, whereas DIV B should be shown on left with margin right set to 15px.
The text was updated successfully, but these errors were encountered:
Bug, feature request, or proposal:
fxLayoutGap
doesn't seem to work properly withfxFlexOrder
. Try the below code:In case of
gt-xs
DIV A
is shown on right and hasmargin-right
set to15px
, whereasDIV B
is shown on left without margin right.What is the expected behavior?
In case of gt-xs
DIV A
should be shown on right and should havemargin-right
set to0px
, whereasDIV B
should be shown on left with margin right set to15px
.The text was updated successfully, but these errors were encountered: