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

Commit

Permalink
🎨 fix non-square icon sizes (#778)
Browse files Browse the repository at this point in the history
closes TryGhost/Ghost#8665

- updates width/height for non-square icons to match the desired dimensions (width+height have to be specified for IE11)

Changes introduced in #724 failed to take into account a few of our icons are not square (notably the `arrow-*-small.svg` icons) resulting in some icons appearing too small.
  • Loading branch information
kevinansfield authored and kirrg001 committed Jul 10, 2017
1 parent 44b278e commit f93f8d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/styles/components/power-select.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

.ember-power-select-trigger svg {
height: 4px;
width: 4px;
width: 6.11px;
margin-left: 2px;
vertical-align: middle;
}
Expand Down
2 changes: 1 addition & 1 deletion app/styles/patterns/forms.css
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ textarea {

.gh-select svg {
height: 8px;
width: 8px;
width: 14px;
position: absolute;
top: 50%;
right: 1.2rem;
Expand Down

0 comments on commit f93f8d8

Please sign in to comment.