-
-
Notifications
You must be signed in to change notification settings - Fork 79k
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
Center align helper improvement #143
Milestone
Comments
That's a good idea actually. No need to zero out the top/bottom margins unnecessarily here. I've added this to the 1.3-wip branch and fixed it there. |
For what it's worth, couldn't this be shortened to |
Nevermind that. I'm an idiot. >///< |
mikejr83
pushed a commit
to SumTotalSystems/bootstrap
that referenced
this issue
Mar 29, 2016
Fix unstopping loading when getData defer is reject
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Probably better to make:
margin: 0 auto;
into:
margin-right: auto; margin-left: auto;
to allow it to not overwrite other things?
Although you might argue that it should always be listed first, and the current setup enforces that.
The text was updated successfully, but these errors were encountered: