diff options
author | Takuya Noguchi <takninnovationresearch@gmail.com> | 2018-11-23 11:50:00 +0900 |
---|---|---|
committer | Takuya Noguchi <takninnovationresearch@gmail.com> | 2018-12-12 15:41:25 -0800 |
commit | e06c08496cfe7e4d46f59e5eae9636fe6f242f69 (patch) | |
tree | 0755cfe2ee1189c2ab97d1ab952d504e7f935495 | |
parent | 75b9234e9ea54c83f0ef2f3524554dc68101459b (diff) | |
download | gitlab-ce-e06c08496cfe7e4d46f59e5eae9636fe6f242f69.tar.gz |
Move .container .title CSS for mobile to the specific CSS
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
-rw-r--r-- | app/assets/stylesheets/framework/layout.scss | 6 | ||||
-rw-r--r-- | app/assets/stylesheets/framework/mobile.scss | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/app/assets/stylesheets/framework/layout.scss b/app/assets/stylesheets/framework/layout.scss index 4902e60253a..97cb9d90ff0 100644 --- a/app/assets/stylesheets/framework/layout.scss +++ b/app/assets/stylesheets/framework/layout.scss @@ -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 { diff --git a/app/assets/stylesheets/framework/mobile.scss b/app/assets/stylesheets/framework/mobile.scss index 63f59eb2873..e69de29bb2d 100644 --- a/app/assets/stylesheets/framework/mobile.scss +++ b/app/assets/stylesheets/framework/mobile.scss @@ -1,6 +0,0 @@ -/** Common mobile (screen XS, SM) styles **/ -@include media-breakpoint-down(xs) { - .container .title { - padding-left: 15px !important; - } -} |