mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-05 18:34:39 +03:00
Fix modal edge spacing
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.
This commit is contained in:
parent
d620f3a0d2
commit
7200b5ec40
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user