-
-
- Logged in as {this.props.spotify.me.display_name ? this.props.spotify.me.display_name : null }
- ({ this.props.spotify.me.id })
-
+
+
+
+ Logged in as {this.props.me.display_name ? this.props.me.display_name : null }
+ ({ this.props.me.id })
)
@@ -84,12 +82,9 @@ class SpotifyAuthenticationFrame extends React.Component{
Authorizing...
);
- }else if( this.props.spotify.authorized ){
+ }else if( this.props.authorized ){
return (
-
- { this.renderMe() }
-
-
+
);
}else{
return (
@@ -99,9 +94,9 @@ class SpotifyAuthenticationFrame extends React.Component{
}
renderRefreshButton(){
- if( !this.props.spotify.authorized ) return null;
+ if( !this.props.authorized ) return null;
- if( this.props.spotify.refreshing_token ){
+ if( this.props.refreshing_token ){
return (
diff --git a/src/scss/components/_lists.scss b/src/scss/components/_lists.scss
index e8b2ce8e..f7730de6 100755
--- a/src/scss/components/_lists.scss
+++ b/src/scss/components/_lists.scss
@@ -65,6 +65,21 @@
border-top: 3px solid $blue;
margin-top: -3px;
}
+
+
+ @include responsive( 849px ){
+ .col {
+ &.name { width: 50%; }
+ &.artists { width: 50%; }
+ &.album { width: 50%; padding-left: 50%; color: $mid_grey; }
+ &.duration { display: none; }
+ }
+
+ &.header {
+ display: none;
+ }
+ }
+
}
diff --git a/src/scss/global/_core.scss b/src/scss/global/_core.scss
index 77b1a872..d6334aac 100755
--- a/src/scss/global/_core.scss
+++ b/src/scss/global/_core.scss
@@ -143,9 +143,10 @@ h4 {
}
.one-liner { @include one_line_text; }
-.grey-text { color: $mid_grey; }
-.red-text { color: $red; }
-.green-text { color: $green; }
+.grey-text { color: $mid_grey !important; }
+.red-text { color: $red !important; }
+.green-text { color: $green !important; }
+.dark-text { color: $dark_grey !important; }
footer {
display: block;
diff --git a/src/scss/views/_settings.scss b/src/scss/views/_settings.scss
index 4f78c7e1..5034be8b 100755
--- a/src/scss/views/_settings.scss
+++ b/src/scss/views/_settings.scss
@@ -3,4 +3,19 @@
section {
padding: 40px;
}
+
+ .me {
+ display: block;
+ float: left;
+
+ .thumbnail {
+ float: left;
+ margin-right: 10px;
+ max-width: 40px;
+ }
+
+ .user-name {
+ padding: 2px 14px;
+ }
+ }
}
\ No newline at end of file