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

Small screens and windows with scrollify.js #32

Open
afuhrtrumpet opened this issue Feb 12, 2015 · 2 comments
Open

Small screens and windows with scrollify.js #32

afuhrtrumpet opened this issue Feb 12, 2015 · 2 comments
Assignees
Labels

Comments

@afuhrtrumpet
Copy link
Contributor

When the window gets small, a lot of the text becomes invisible, and can't be seen because of the snappy scrolling. This is a pretty big problem moving forward.

Also, how should we handle this on mobile?

@J3RN
Copy link
Contributor

J3RN commented Feb 12, 2015

How important is this for the prototype? I can definitely understand this concern with the end-product, but the prototype just has to be demonstrable, right?

Anyhow, my solution would be simple to just display less data on mobile. Instead of having several columns - we could just do one, and so on. This would be acheivable with media queries, like:

@media only screen and max-width(700px) {
  .section2 {
    display: none;
  }
}

P.S. Still not convinced snappy scrolling is a good idea

@afuhrtrumpet
Copy link
Contributor Author

Not really, I guess. It just has to look good on a laptop for now.

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

No branches or pull requests

2 participants