Move .container .content CSS for mobile to the specific CSS

Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
This commit is contained in:
Takuya Noguchi 2018-11-23 11:44:39 +09:00
parent 44ce070d1c
commit 75b9234e9e
2 changed files with 2 additions and 4 deletions

View file

@ -40,6 +40,8 @@ body {
.content { .content {
margin: 0; margin: 0;
@include media-breakpoint-down(xs) { margin-top: 20px; }
} }
} }

View file

@ -1,9 +1,5 @@
/** Common mobile (screen XS, SM) styles **/ /** Common mobile (screen XS, SM) styles **/
@include media-breakpoint-down(xs) { @include media-breakpoint-down(xs) {
.container .content {
margin-top: 20px;
}
.container .title { .container .title {
padding-left: 15px !important; padding-left: 15px !important;
} }