Skip to content

Commit

Permalink
Merge pull request #44 from mtthp/master
Browse files Browse the repository at this point in the history
Bug fixes
  • Loading branch information
chriscamicas authored Nov 10, 2017
2 parents 997adbf + 5c7a09b commit ea53b12
Show file tree
Hide file tree
Showing 4 changed files with 339 additions and 1 deletion.
6 changes: 5 additions & 1 deletion client/src/components/Topic/TopicCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</span>
</li>
<div class="content">
{{ topic.description ? topic.description : 'Empty in here' }}
<pre>{{ topic.description ? topic.description : 'Empty in here' }}</pre>
<div class="mdc-grid-list">
<draggable
v-if="medias.length > 0"
Expand Down Expand Up @@ -344,6 +344,10 @@ export default {
overflow: auto;
}

.topic.expanded .content pre {
font-family: inherit;
}

.topic .chevron {
padding: 12px;
transition: transform 0.2s;
Expand Down
1 change: 1 addition & 0 deletions client/src/components/Xsplit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ export default {
flex-direction: column;
align-items: center;
justify-content: center;
margin-top: 1.5em;
}

.xsplit .content img {
Expand Down
Loading

0 comments on commit ea53b12

Please sign in to comment.