Skip to content

Commit

Permalink
move css style into class
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Tirk <[email protected]>
  • Loading branch information
powerpaul17 committed Nov 1, 2023
1 parent 5f38364 commit 511ac89
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/feed-display/FeedItemRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<div class="main-container">
<div class="title-container" :class="{ 'unread': item.unread }">
<span style="white-space: nowrap" :dir="item.rtl && 'rtl'">
<span :dir="item.rtl && 'rtl'">
{{ item.title }}
</span>
</div>
Expand Down Expand Up @@ -194,6 +194,7 @@ export default Vue.extend({
flex-grow: 1;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
Expand Down

0 comments on commit 511ac89

Please sign in to comment.