Created
April 25, 2012 15:47
-
-
Save kapusta/2490791 to your computer and use it in GitHub Desktop.
redefine the padding for iphone so a Bootstrap span6 will fit in the viewport
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* redefine the padding for iphone so a span 6 will fit in the viewport */ | |
@media only screen and (max-device-width: 480px), | |
only screen and (-webkit-min-device-pixel-ratio: 2) { | |
.container-fluid { | |
padding-right: 10px; | |
padding-left: 10px; | |
*zoom: 1; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment