Skip to content

Commit

Permalink
Merge pull request #472 from averissimo/fix-image-loading
Browse files Browse the repository at this point in the history
Fix image loading resizing -- #471

small and contained fix
  • Loading branch information
averissimo committed Dec 2, 2016
2 parents dd3ce75 + 36ad6c8 commit 343667f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/ui/css/yakyak/applayout.less
Expand Up @@ -60,7 +60,7 @@
text-align: center;
margin-bottom: 1em;
img {
height: 10em;
height: 160px;
}
span.text {
text-align: center;
Expand Down
2 changes: 1 addition & 1 deletion src/ui/views/aboutlayout.coffee
Expand Up @@ -24,7 +24,7 @@ localVersion = remote.require('electron').app.getVersion()
module.exports = exp = layout ->
div class: 'about', ->
div ->
img src: path.join __dirname, '..', '..', 'icons', 'yakyak-logo.svg'
img src: path.join __dirname, '..', '..', 'icons', 'icon@8.png'
div class: 'name', ->
h2 'YakYak v' + localVersion
# TODO: if objects are undefined then it should check again on next
Expand Down
2 changes: 1 addition & 1 deletion src/ui/views/applayout.coffee
Expand Up @@ -104,7 +104,7 @@ module.exports = exp = layout ->
div class: 'connecting', ->
div ->
div () ->
img src: path.join __dirname, '..', '..', 'icons', 'yakyak-logo.svg'
img src: path.join __dirname, '..', '..', 'icons', 'icon@32.png'
div ->
span class: 'text state_connecting', 'Connecting'
span class: 'text state_contacts hide', 'Loading contacts'
Expand Down

0 comments on commit 343667f

Please sign in to comment.