Skip to content

Commit

Permalink
Fix modal edge spacing
Browse files Browse the repository at this point in the history
No issue

The transparent border surrounding modals was being cut off.
This fix uses padding instead of adjusting the left & right valued to create space.
  • Loading branch information
PaulAdamDavis committed Dec 23, 2014
1 parent d620f3a commit 7200b5e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions core/client/assets/sass/components/modals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@
position: fixed;
top: 0;
bottom: 0;
left: 10px;
right: 10px;
left: 0;
right: 0;
z-index: 1040;
padding-left: 10px;
padding-right: 10px;
overflow-x: auto;
overflow-y: scroll;
transition: all 0.15s linear 0s;
Expand Down

0 comments on commit 7200b5e

Please sign in to comment.