jquery-archive / plugins.jquery.com

The jQuery Plugins site
plugins.jquery.com
Other
1.24k stars 243 forks source link

Needs padding when viewport is < 768px #79

Closed remybach closed 11 years ago

remybach commented 11 years ago

Basically, the following needs to go into the base.css file (I'd do a pull request, but I couldn't find the file in this repo - happy to do it if shown where). Whether 2% is used or another value, there needs to be something I think.

@media only screen and (max-width: 768px) {
    .content-full.full-width #content {
        padding-left:2%;
        padding-right:2%;
    }
}
ajpiano commented 11 years ago

Hey @remybach

The right place for it is in in our jquery/jquery-wp-content repo, which controls the theming for all sites.

https://github.com/jquery/jquery-wp-content/blob/master/themes/jquery/css/base.css

Thanks for catching this. You can stand up the environment locally if you want to test your change locally, or you can send a PR and we can go from there together.

remybach commented 11 years ago

:+1: thanks... cloning the repo now.

ajpiano commented 11 years ago

:sunglasses: thank you @remybach

remybach commented 11 years ago

:) https://github.com/jquery/jquery-wp-content/pull/176