Skip to content

Commit

Permalink
fix(ui): Prevent playlist image aspect ratio from changing
Browse files Browse the repository at this point in the history
  • Loading branch information
EricLambrecht committed Aug 28, 2018
1 parent 3e6312d commit 5b49f93
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<template>
<div id="app">
<img
:src="logoURI"
:src="logoURI"
class="image"
width="140">
<h1>Better Spotify Playlists (prototype, WIP)</h1>

Expand Down Expand Up @@ -171,6 +172,12 @@ export default {
margin: 60px auto;
}
.image {
height: 140px;
width: 140px;
object-fit: cover;
}
.display-settings {
text-align: left;
Expand Down

0 comments on commit 5b49f93

Please sign in to comment.