diff --git a/client/components/tickets/tickets.html b/client/components/tickets/tickets.html index cec17e1d..2aec70f0 100644 --- a/client/components/tickets/tickets.html +++ b/client/components/tickets/tickets.html @@ -6,7 +6,7 @@ {{/each}} {{else}}
-
+
🙌

diff --git a/client/stylesheets/scss/components/_banner.scss b/client/stylesheets/scss/components/_banner.scss index 2374a964..ea78185f 100644 --- a/client/stylesheets/scss/components/_banner.scss +++ b/client/stylesheets/scss/components/_banner.scss @@ -7,7 +7,7 @@ letter-spacing: .2em; color: white; text-align: center; - padding: 1em 0; + padding: 1.4em 0 1.4em; a { color: white; } diff --git a/client/stylesheets/scss/components/_nav.scss b/client/stylesheets/scss/components/_nav.scss index 3da7b8ae..db2023ff 100644 --- a/client/stylesheets/scss/components/_nav.scss +++ b/client/stylesheets/scss/components/_nav.scss @@ -1,6 +1,6 @@ #nav { position: absolute; - padding: 12px; + padding: 8px 8px 0; width: 100%; .floating.notification.label { diff --git a/server/publications.js b/server/publications.js index 1d21209b..aa5a2129 100644 --- a/server/publications.js +++ b/server/publications.js @@ -59,7 +59,7 @@ function getAllMentors(){ 'profile.skills': 1, 'services.facebook.id': 1 } - }) + }); } } @@ -80,7 +80,7 @@ function getMentorsOnline(){ 'status.idle': 1, 'status.online': 1 } - }) + }); } } @@ -114,7 +114,7 @@ function getTicketData(){ status: 1, rating: 1 } - }) + }); } } @@ -135,7 +135,7 @@ function getAllTickets(){ status: 1, rating: 1 } - }) + }); } } } @@ -145,7 +145,7 @@ function getUserTickets(){ if (authorized.user(this.userId)){ return Tickets.find({ userId: this.userId - }) + }); } }