Index: static/scss/_base.scss |
=================================================================== |
--- a/static/scss/_base.scss |
+++ b/static/scss/_base.scss |
@@ -26,38 +26,15 @@ |
line-height: 1.5; |
} |
/** |
* Center content within a (responsive) fixed width |
*/ |
.container |
{ |
- width: $phone-width; |
+ width: $container-width; |
max-width: 100%; |
- margin: 0px auto; |
- padding: 0px $small-space; |
-} |
- |
-@media(min-width: $tablet-breakpoint) |
-{ |
- .container |
- { |
- width: $tablet-width; |
- } |
+ margin-right: auto; |
+ margin-left: auto; |
+ padding-right: $small-space; |
+ padding-left: $small-space; |
} |
- |
-@media(min-width: $desktop-breakpoint) |
-{ |
- .container |
- { |
- width: $desktop-width; |
- } |
-} |
- |
-@media(min-width: $large-desktop-breakpoint) |
-{ |
- .container |
- { |
- width: $large-desktop-width; |
- } |
-} |
- |