diff options
author | Jose Ivan Vargas <jvargas@gitlab.com> | 2017-06-12 13:33:42 -0500 |
---|---|---|
committer | Jose Ivan Vargas <jvargas@gitlab.com> | 2017-06-12 13:33:42 -0500 |
commit | f22e562f8f6d29268152ac16267785e60dd89acc (patch) | |
tree | 932c702368e15b85071ad650458af954df219360 /app | |
parent | de23d651e0a6b31b21c416c073ddf9e8ff97ade5 (diff) | |
download | gitlab-ce-fix-overflow-slash-commands.tar.gz |
fixed overflow on mobile screens for the slash commandsfix-overflow-slash-commands
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/stylesheets/framework/markdown_area.scss | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/markdown_area.scss b/app/assets/stylesheets/framework/markdown_area.scss index 80691a234f8..f1ed3bc9311 100644 --- a/app/assets/stylesheets/framework/markdown_area.scss +++ b/app/assets/stylesheets/framework/markdown_area.scss @@ -174,3 +174,13 @@ white-space: nowrap; } } + +@media(max-width: $screen-xs-max) { + #at-view-commands { + left: 5px; + + > .atwho-view-ul { + width: 350px; + } + } +} |