diff options
author | Annabel Dunstone <annabel.dunstone@gmail.com> | 2016-05-10 16:51:57 -0500 |
---|---|---|
committer | Annabel Dunstone <annabel.dunstone@gmail.com> | 2016-05-10 16:51:57 -0500 |
commit | a51064906bd4dcb29ea61c2278e2c32e848a5de6 (patch) | |
tree | 5bc32e5141ebf3c8750c8d5d4dacb7beb0905449 /app/assets | |
parent | e689d9fb70d7484de708f8f436b294b40a9f6486 (diff) | |
download | gitlab-ce-a51064906bd4dcb29ea61c2278e2c32e848a5de6.tar.gz |
No extra link padding at xs screen size
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/stylesheets/framework/sidebar.scss | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app/assets/stylesheets/framework/sidebar.scss b/app/assets/stylesheets/framework/sidebar.scss index a509ef2f149..c243dd8a424 100644 --- a/app/assets/stylesheets/framework/sidebar.scss +++ b/app/assets/stylesheets/framework/sidebar.scss @@ -253,8 +253,10 @@ width: auto; a { - padding-left: 23px; - transition-duration: .3s; + @media (min-width: $screen-xs-min) { + padding-left: 23px; + transition-duration: .3s; + } span { display: none; |