0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

Fix sizing bug where SVG logos did not display when uploaded

This commit is contained in:
John O'Nolan 2017-05-07 18:14:29 +01:00
parent fc3234e2ec
commit 9f2c158dea
2 changed files with 7 additions and 5 deletions

View file

@ -93,10 +93,10 @@ body > .ember-view:not(.default-liquid-destination) {
.gh-nav-menu-icon { .gh-nav-menu-icon {
flex-shrink: 0; flex-shrink: 0;
margin-right: 10px; margin-right: 10px;
width: 34px; width: 32px;
height: 34px; height: 32px;
background-color: transparent; background-color: transparent;
background-size: 34px; background-size: 32px;
border-radius: 4px; border-radius: 4px;
} }

View file

@ -41,12 +41,14 @@
/* Images */ /* Images */
.gh-setting-action-smallimg img { .gh-setting-action-smallimg img {
max-height: 50px; height: 50px;
width: auto;
max-width: 250px; max-width: 250px;
} }
.gh-setting-action-largeimg img { .gh-setting-action-largeimg img {
max-height: 130px; height: 130px;
width: auto;
max-width: 250px; max-width: 250px;
} }