From 5b0aa0c1930beeda30d03968fdb738c6918c296f Mon Sep 17 00:00:00 2001 From: James Barnsley Date: Thu, 14 Nov 2019 09:10:04 +1300 Subject: [PATCH] Minor style tweaks --- src/js/services/spotify/actions.js | 2 +- src/scss/global/_core.scss | 4 ++-- src/scss/views/_track.scss | 8 +------- 3 files changed, 4 insertions(+), 10 deletions(-) diff --git a/src/js/services/spotify/actions.js b/src/js/services/spotify/actions.js index 1e6f5f75..22344940 100755 --- a/src/js/services/spotify/actions.js +++ b/src/js/services/spotify/actions.js @@ -1495,7 +1495,7 @@ export function getPlaylist(uri) { ...helpers.formatPlaylist(response), is_completely_loaded: true, user_uri: response.owner.uri, - tracks_uris: helpers.arrayOf('uri', tracks), + tracks_uris: tracks ? helpers.arrayOf('uri', tracks) : null, tracks_more: response.tracks.next, tracks_total: response.tracks.total, description, diff --git a/src/scss/global/_core.scss b/src/scss/global/_core.scss index c0a0dd79..867c3ab3 100755 --- a/src/scss/global/_core.scss +++ b/src/scss/global/_core.scss @@ -246,14 +246,14 @@ h2 { text-decoration: none; &:hover { - border-bottom: 1px solid colour(white); + border-bottom: 2px solid colour(white); } } &.grey-text { a:hover { color: colour(mid_grey) !important; - border-bottom: 1px solid colour(mid_grey); + border-bottom: 2px solid colour(mid_grey); } } } diff --git a/src/scss/views/_track.scss b/src/scss/views/_track.scss index 4c90b7c9..7febfd14 100755 --- a/src/scss/views/_track.scss +++ b/src/scss/views/_track.scss @@ -4,12 +4,6 @@ main .track-view { position: relative; .title { - h2 { - a:hover { - color: darken(colour(mid_grey), 20%); - } - } - .details { padding: 25px 0 30px; @@ -45,7 +39,7 @@ main .track-view { .content { padding-bottom: 20px; - *, + *, & * { font-size: 18px; line-height: normal;