Skip to content
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

nav .brand-logo (Line 5268) #1677

Closed
derekclair opened this issue Jul 6, 2015 · 2 comments
Closed

nav .brand-logo (Line 5268) #1677

derekclair opened this issue Jul 6, 2015 · 2 comments

Comments

@derekclair
Copy link

nav .brand-logo {
position: absolute;
color: #fff;
display: inline-block;
font-size: 2.1rem;
padding: 0;
white-space: nowrap; }

conflicts on smaller viewports with Line 5282, which I think is missing the center, should be nav .brand-logo.center

@media only screen and (max-width : 992px) {
  nav .brand-logo {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%); } }
@jagregory
Copy link

+1 seeing the same thing. .brand-logo.right only works when width > 992px.

@acburst
Copy link
Collaborator

acburst commented Jul 20, 2015

Fixed in fe0909f

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants