diff options
author | Ben Burwell <ben@benburwell.com> | 2015-05-11 16:59:21 -0400 |
---|---|---|
committer | Ben Burwell <ben@benburwell.com> | 2015-05-11 16:59:21 -0400 |
commit | ea2ce92242db58fdbf0319192deb2821eef74a06 (patch) | |
tree | 8abffb4d4a9517431c6516cdab641b3294998690 /_sass/_respond.scss | |
parent | de8f745817684a3cccbdaa0c17286792f07cbd24 (diff) | |
parent | 4ead5d2173d31e914ae7434872270d18c23f2cbf (diff) |
Merge pull request #4 from benburwell/updates
Updates
Diffstat (limited to '_sass/_respond.scss')
-rw-r--r-- | _sass/_respond.scss | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/_sass/_respond.scss b/_sass/_respond.scss index 1acbecc..863767a 100644 --- a/_sass/_respond.scss +++ b/_sass/_respond.scss @@ -1,7 +1,6 @@ // Set up default container .container { display: block; - width: 100%; margin-left: auto; margin-right: auto; margin-top: 0; @@ -30,15 +29,15 @@ } // Set a layout breakpoint at 768px for tablets -@media only screen and (min-width: 768px) and (max-width: 899px) { +@media only screen and (min-width: 768px) and (max-width: 799px) { .container { width: 768px; } } // Set a layout breakpoint at 900px for desktops -@media only screen and (min-width: 900px) { +@media only screen and (min-width: 800px) { .container { - width: 900px; + width: 800px; } } |