Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion app/styles/partials/event-card.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.event.card {
height: 355px;
height: auto;

.header {
height: 50px;
Expand All @@ -17,6 +17,17 @@
}
}

.extra.content {

.hashtags {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 90%;
}
}

.event.wide {
border-radius: 0 !important;
margin: 0 !important;
Expand Down
2 changes: 1 addition & 1 deletion app/templates/components/event-card.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<span class="right floated">
<i role="button" class="share alternate link icon" {{action this.shareEvent this.event}}></i>
</span>
<span>
<span class="hashtags">
{{#if hasBlock}}
{{yield}}
{{else}}
Expand Down