csswizardry / inuit.css

Powerful, scalable, Sass-based, BEM, OOCSS framework.
inuitcss.com
Other
3.83k stars 415 forks source link

Find where @media queries breakpoints are defined #293

Closed SimoNonnis closed 10 years ago

SimoNonnis commented 10 years ago

Hi,

I can't find the file where @media queries breakpoints are defined Can I have some tip?

Thanks

--Simon

emagnier commented 10 years ago

In _defaults.scss:

/**
 * Tell inuit.css when breakpoints start.
 */
$lap-start:         481px!default;
$desk-start:        1024px!default;
$desk-wide-start:   1200px!default;

But if you need to modify them, you need first to copy them in your _vars.scss (and remove the !default).

SimoNonnis commented 10 years ago

I got it....Thanks

emagnier commented 10 years ago

Cool :) Please close this issue if everything is good on your side.