Skip to content

Commit

Permalink
Playing with media queries
Browse files Browse the repository at this point in the history
  • Loading branch information
Oldrich Vetesnik committed Mar 11, 2012
1 parent 6ec6cdb commit 776f825
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion public/stylesheets/layout.css
Expand Up @@ -45,7 +45,7 @@ html, body {
margin-left: 4px;
}

@media only screen and (max-width: 767px) {
@media (max-width: 767px) {
/* line 19, ../../scss/layout.scss */
.container_12 .grid_4 {
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion scss/layout.scss
Expand Up @@ -14,7 +14,7 @@ html, body { margin: 0; padding: 0; }

.gravatar img { margin-left: 4px; }

@media only screen and (max-width: 767px)
@media (max-width: 767px)
{
.container_12 .grid_4 { width: 100%; }
}

0 comments on commit 776f825

Please sign in to comment.