0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Fix back button spacing

This commit is contained in:
Peter Zimon 2020-10-02 15:20:08 +02:00
parent fe79d42239
commit 6c1041cedb

View file

@ -9,7 +9,7 @@ export const BackButtonStyles = `
height: unset;
min-width: unset;
position: absolute;
top: -2px;
top: -3px;
left: -16px;
background: none;
padding: 8px;
@ -25,8 +25,10 @@ export const BackButtonStyles = `
}
.gh-portal-btn-back svg {
width: 16px;
height: 16px;
width: 17px;
height: 17px;
margin-top: 1px;
margin-right: 2px;
}
`;