Skip to content

Commit

Permalink
ui tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
ehzhang committed Sep 9, 2015
1 parent 716ecdf commit 825d6cf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion client/components/tickets/tickets.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{{/each}}
{{else}}
<div class="ui segment">
<div style="font-size: 4em">
<div style="font-size: 4em; line-height: 1em">
🙌
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion client/stylesheets/scss/components/_banner.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
letter-spacing: .2em;
color: white;
text-align: center;
padding: 1em 0;
padding: 1.4em 0 1.4em;
a {
color: white;
}
Expand Down
2 changes: 1 addition & 1 deletion client/stylesheets/scss/components/_nav.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#nav {
position: absolute;
padding: 12px;
padding: 8px 8px 0;
width: 100%;

.floating.notification.label {
Expand Down
10 changes: 5 additions & 5 deletions server/publications.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function getAllMentors(){
'profile.skills': 1,
'services.facebook.id': 1
}
})
});
}
}

Expand All @@ -80,7 +80,7 @@ function getMentorsOnline(){
'status.idle': 1,
'status.online': 1
}
})
});
}
}

Expand Down Expand Up @@ -114,7 +114,7 @@ function getTicketData(){
status: 1,
rating: 1
}
})
});
}
}

Expand All @@ -135,7 +135,7 @@ function getAllTickets(){
status: 1,
rating: 1
}
})
});
}
}
}
Expand All @@ -145,7 +145,7 @@ function getUserTickets(){
if (authorized.user(this.userId)){
return Tickets.find({
userId: this.userId
})
});
}
}

Expand Down

0 comments on commit 825d6cf

Please sign in to comment.