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 <paultirk@paultirk.com>
  • Loading branch information
powerpaul17 authored and SMillerDev committed Nov 7, 2023
1 parent 282056f commit f3ce439
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 f3ce439

Please sign in to comment.