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

Bug? not sure #15

Closed
Randore opened this issue Mar 9, 2014 · 1 comment
Closed

Bug? not sure #15

Randore opened this issue Mar 9, 2014 · 1 comment

Comments

@Randore
Copy link

Randore commented Mar 9, 2014

The grid was simple and easy to start with mobile first approach but doesn't seems to be working from screen tablet 600px to below iphone. The whole grid looks single on starting from screen-size of 600px and below.

But in real world situation we want our site to look uniform and responsive at-least to the screen size of tablet. If i am wrong, let me know the best way to do this.

@aekaplan
Copy link
Owner

Hi Randore,

Not a bug. I would read more about mobile first responsive design. http://bradfrostweb.com/blog/mobile/the-many-faces-of-mobile-first/

You start with mobile styles and layer on styles optimized for larger screens only as needed. Just add a tablet media query! Take a look at Bootstrap's media queries:

/* Extra small devices (phones, less than 768px) */
/* No media query since this is the default in Bootstrap */

/* Small devices (tablets, 768px and up) */
@media (min-width: @screen-sm-min) { ... }

/* Medium devices (desktops, 992px and up) */
@media (min-width: @screen-md-min) { ... }

/* Large devices (large desktops, 1200px and up) */
@media (min-width: @screen-lg-min) { ... }

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

2 participants