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.
When adding fxShow/FxHide to my <div>, the fxLayoutAlign alignment is no longer recognised. This can be easily replicated in the plunkr demo for this project. Fiddling around with various combinations make this easy to replicate.
"@angular/flex-layout": "^2.0.0-beta.5"
If this is not a bug, would it be possible to provide an example? My understanding of the documentation is that I should be using <fxFlexAlign> for aligning the contents however that makes no difference either way.
Many thanks
Works as intended:
<divfxLayout="row" fxFlex="grow" fxLayoutAlign="start center"><divfxFlex="200px" fxLayoutAlign="start center">
Start Alignment
</div><!-- responsive menu --><divfxFlex="grow" fxLayoutAlign="end center">
End Alignment
</div></div>
Does NOT work:
<divfxLayout="row" fxFlex="grow" fxLayoutAlign="start center"><divfxFlex="200px" fxLayoutAlign="start center">
Start Alignment
</div><!-- responsive menu --><divfxFlex="grow" fxLayoutAlign="end center" fxShowfxHide.gt-sm>
End Alignment
</div></div>