-
Notifications
You must be signed in to change notification settings - Fork 315
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
fix Try Habitat on mobile #716
Conversation
Signed-off-by: Ryan Keairns <[email protected]>
Signed-off-by: Ryan Keairns <[email protected]>
By analyzing the blame information on this pull request, we identified @cwebberOps, @magwalk, @juliandunn and @thommay to be potential reviewers |
@@ -54,7 +54,7 @@ $main-nav-breakpoint: 710px; | |||
} | |||
|
|||
.main-nav--logo { | |||
@include grid-column(4); | |||
@include grid-column(3); | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This fixes some mobile nav styling issues where the button and links wrapped to second line.
@@ -84,10 +93,12 @@ code { | |||
|
|||
a.active { | |||
background-color: $hab-blue !important; | |||
color: $white; | |||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Somewhere along the way, the button text changed from gray to white - this overrides it to white for more contrast/readability.
📌 Commit e047632 has been approved by |
Signed-off-by: Ryan Keairns <[email protected]> Pull request: #716 Approved by: smith
Signed-off-by: Ryan Keairns <[email protected]> Pull request: #716 Approved by: smith
☀️ Test successful - travis |
Signed-off-by: Ryan Keairns <[email protected]> Pull request: #716 Approved by: smith
Signed-off-by: Ryan Keairns <[email protected]> Pull request: #716 Approved by: smith
I discovered last night that I could not bring up the keyboard on my iPhone while on Try Habitat.
Research indicated that only true inputs will trigger the iOS keyboard, so this PR adds a transparent input. I tested it on the xcode iOS simulator for iPhone 5/6 and iPad Air 2 and it works, but we'll see what happens in the wild :)
I've also changed the Next button to look disabled but not actually be disabled since the current javascript we're using does not properly enable the button on mobile Safari.
Signed-off-by: Ryan Keairns [email protected]