diff --git a/css/style.css b/css/style.css index 6f235f4..c89650d 100644 --- a/css/style.css +++ b/css/style.css @@ -3,6 +3,11 @@ body { background: #666 url("../img/background.png"); padding: 30px; } +@media (max-width: 767.98px) { + body { + background: none; + padding: 0; } } + #wrapper { background-color: #FFF; } diff --git a/scss/style.scss b/scss/style.scss index e48eaca..c53482e 100644 --- a/scss/style.scss +++ b/scss/style.scss @@ -30,6 +30,13 @@ body { padding: 30px; } +@media (max-width: 767.98px) { + body { + background: none; + padding: 0; + } +} + #wrapper { background-color: #FFF }