-
Notifications
You must be signed in to change notification settings - Fork 772
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FxLayoutAlign="flex-end" renders as flex-start #232
Milestone
Comments
Use "end center" |
While not a recommended usage, we should support the flexbox CSS versions also. |
ThomasBurleson
added a commit
that referenced
this issue
Mar 28, 2017
Current API translates `start` and `end` to `flex-start` and `flex-end` respectively. The API should also support the raw flex-<xxx> values. Fixes #232.
ThomasBurleson
added a commit
that referenced
this issue
Mar 28, 2017
Current API translates `start` and `end` to `flex-start` and `flex-end` respectively. The API should also support the raw flex-<xxx> values. Fixes #232.
tinayuangao
pushed a commit
that referenced
this issue
Mar 29, 2017
Current API translates `start` and `end` to `flex-start` and `flex-end` respectively. The API should also support the raw flex-<xxx> values. Fixes #232.
karlhaas
pushed a commit
to karlhaas/flex-layout
that referenced
this issue
May 3, 2017
) Current API translates `start` and `end` to `flex-start` and `flex-end` respectively. The API should also support the raw flex-<xxx> values. Fixes angular#232.
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I'm wrapping my html in a div that looks something like
<div class="flex" fxLayout="column" fxLayoutAlign="flex-end center" fxLayoutGap="10px">
but when I go to inspect element,justify-content
is set toflex-start
and notflex-end
The text was updated successfully, but these errors were encountered: