diff options
author | Jeroen van Baarsen <jeroenvanbaarsen@gmail.com> | 2016-04-06 13:27:22 +0000 |
---|---|---|
committer | Jeroen van Baarsen <jeroenvanbaarsen@gmail.com> | 2016-04-06 13:27:22 +0000 |
commit | 1749bd3b467b151074cd10f1d11c679fb714854b (patch) | |
tree | e3eb313ab94923a76966799fcd0196afa840d7e4 /app/assets/stylesheets | |
parent | c49f9c61742a078e8b9aacbfdba0dd936a89ea6a (diff) | |
parent | deca9fc6266dfd5588b23f64157ddb05e5713412 (diff) | |
download | gitlab-ce-1749bd3b467b151074cd10f1d11c679fb714854b.tar.gz |
Merge branch 'feature/margin-bottom-for-empty-repos' into 'master'
Added bottom margin to CLI instructions
The CLI instructions block in the empty project page is missing a margin-bottom style property. I added it, you can review the only line I edited to add this.
This only fixes a UX bug (to me), related to the "Remove project" button that is not correctly padded. Now I believe that part look better :)
I attach screenshots.
### before
![Selezione_009](/uploads/f46b2a26c192a0b1994ff2f037f50e6c/Selezione_009.png)
### after
![Selezione_008](/uploads/33a9451bbe8bfd9abd300f9c6eb4005f/Selezione_008.png)
See merge request !3505
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r-- | app/assets/stylesheets/pages/projects.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/stylesheets/pages/projects.scss b/app/assets/stylesheets/pages/projects.scss index a0ac06008b6..fcca9d4faf5 100644 --- a/app/assets/stylesheets/pages/projects.scss +++ b/app/assets/stylesheets/pages/projects.scss @@ -315,7 +315,7 @@ pre.light-well { } .git-empty { - margin: 0 7px; + margin: 0 7px 7px; h5 { color: #5c5d5e; |