Skip to content
This repository has been archived by the owner on Nov 28, 2022. It is now read-only.

Commit

Permalink
Fix sizing bug where SVG logos did not display when uploaded
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnONolan committed May 7, 2017
1 parent d70ea17 commit 1f2019a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions app/styles/layouts/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ body > .ember-view:not(.default-liquid-destination) {
.gh-nav-menu-icon {
flex-shrink: 0;
margin-right: 10px;
width: 34px;
height: 34px;
width: 32px;
height: 32px;
background-color: transparent;
background-size: 34px;
background-size: 32px;
border-radius: 4px;
}

Expand Down
6 changes: 4 additions & 2 deletions app/styles/layouts/settings.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,14 @@
/* Images */

.gh-setting-action-smallimg img {
max-height: 50px;
height: 50px;
width: auto;
max-width: 250px;
}

.gh-setting-action-largeimg img {
max-height: 130px;
height: 130px;
width: auto;
max-width: 250px;
}

Expand Down

0 comments on commit 1f2019a

Please sign in to comment.