Move .container .title 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:50:00 +09:00
parent 75b9234e9e
commit e06c08496c
2 changed files with 6 additions and 6 deletions

View File

@ -43,6 +43,12 @@ body {
@include media-breakpoint-down(xs) { margin-top: 20px; }
}
@include media-breakpoint-down(xs) {
.container .title {
padding-left: 15px !important;
}
}
}
.navless-container {

View File

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