Skip to content

Commit

Permalink
fix: the width of time stamp in notification. (chatwoot#1791)
Browse files Browse the repository at this point in the history
Co-authored-by: Nithin David Thomas <[email protected]>
  • Loading branch information
iamsivin and nithindavid authored Feb 17, 2021
1 parent ec1ddc0 commit 2245233
Showing 1 changed file with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,12 @@
:username="notificationItem.primary_actor.meta.assignee.name"
/>
</td>
<td class="text-right timestamp--column">
<span class="notification--created-at">
{{ dynamicTime(notificationItem.created_at) }}
</span>
<td>
<div class="text-right timestamp--column">
<span class="notification--created-at">
{{ dynamicTime(notificationItem.created_at) }}
</span>
</div>
</td>
<td>
<div
Expand Down Expand Up @@ -191,7 +193,8 @@ export default {
}
.timestamp--column {
width: 12rem;
min-width: 13rem;
text-align: right;
}
.notification--message-title {
Expand Down

0 comments on commit 2245233

Please sign in to comment.