diff --git a/src/js/views/Artist.js b/src/js/views/Artist.js index 290cd850..387ec6f0 100755 --- a/src/js/views/Artist.js +++ b/src/js/views/Artist.js @@ -142,6 +142,7 @@ class Artist extends React.Component{
+ {this.props.artist.images ?
: null} {this.props.artist.images_additional ?
: null} {this.props.artist.followers ?
{this.props.artist.followers.total.toLocaleString() } followers
: null} {this.props.artist.popularity ?
{this.props.artist.popularity }% popularity
: null} diff --git a/src/scss/components/_grid.scss b/src/scss/components/_grid.scss index ce7f861c..1ef83709 100755 --- a/src/scss/components/_grid.scss +++ b/src/scss/components/_grid.scss @@ -73,7 +73,7 @@ } } - @include responsive( null, 2400px ){ + @include responsive( null, 1900px ){ &.mini { .grid-item { @include grid_item( 3 ) @@ -86,7 +86,7 @@ } } - @include responsive( 2399px, 1200px ){ + @include responsive( 1899px, 1200px ){ &.mini { .grid-item { @include grid_item( 2 ) diff --git a/src/scss/global/_core.scss b/src/scss/global/_core.scss index 274be777..058ee34d 100755 --- a/src/scss/global/_core.scss +++ b/src/scss/global/_core.scss @@ -286,8 +286,8 @@ footer { } &.dark { - background: $dark_grey; - color: $white; + background: lighten($dark_grey,10%); + color: $mid_grey; } }