Compare commits

..

No commits in common. "a10fdefd23c29462f6032741b7386b3a679d0598" and "c6f6e216f2abba9c5c0914b25535d736df54791e" have entirely different histories.

3 changed files with 6 additions and 7 deletions

View File

@ -1,4 +1,3 @@
body { body {
margin: 0.5em; margin: 0.5em;
font-family: 'Quicksand', sans-serif; font-family: 'Quicksand', sans-serif;

View File

@ -6,7 +6,7 @@
#app ul #app ul
{ {
font-size: 24em; font-size: 0.75em;
margin: 0.25em 0 0 0; margin: 0.25em 0 0 0;
padding: 0 0 0 0; padding: 0 0 0 0;
list-style-type: none; list-style-type: none;
@ -37,7 +37,7 @@
} }
#app #members { #app #members {
font-size: 32px; font-size: 1em;
} }
#app #add_chat_off { #app #add_chat_off {
@ -54,14 +54,14 @@
overflow: scroll; overflow: scroll;
overflow-y: scroll; overflow-y: scroll;
overflow-x: hidden; overflow-x: hidden;
font-size: 18px; font-size: 0.6em;
} }
#app #input_user{ #app #input_user{
color: green; color: green;
width: 8.5em; width: 8.5em;
height: 1.1em; height: 1.1em;
font-size: 18px; font-size: 0.75em;
border: none; border: none;
outline: none; outline: none;
border-bottom: 0.15em solid green; border-bottom: 0.15em solid green;
@ -77,7 +77,7 @@
border-bottom: 0.2em solid green; border-bottom: 0.2em solid green;
caret-color: green; caret-color: green;
color: green; color: green;
font-size: 16px; font-size: 0.65em;
} }
#app #you { #app #you {

View File

@ -21,7 +21,7 @@ class Profile
let response = await this.client._get(`/api/profiles/${user_id}`); let response = await this.client._get(`/api/profiles/${user_id}`);
let response_data = await response.json(); let response_data = await response.json();
this.user_id = response_data.user_id; this.user_id = response.user_id;
this.username = response_data.username; this.username = response_data.username;
this.avatar_url = response_data.avatar_url; this.avatar_url = response_data.avatar_url;
} }