Skip to content

Commit

Permalink
fix(RecentPageTile): put userbubble and timestamp in separate lines
Browse files Browse the repository at this point in the history
Signed-off-by: Jonas <[email protected]>
  • Loading branch information
mejo- committed Aug 2, 2023
1 parent 157c7ab commit c1096ac
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/LastUserBubble.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
:show-user-status="false">
{{ lastEditedUserMessage }}
</NcUserBubble>
{{ lastUpdate }}
<span class="timestamp">
{{ lastUpdate }}
</span>
</div>
</template>

Expand Down
6 changes: 6 additions & 0 deletions src/components/Page/LandingPageWidgets/RecentPageTile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,12 @@ export default {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: flex;
flex-direction: column;
:deep(.timestamp) {
color: var(--color-text-maxcontrast);
}
}
}
</style>

0 comments on commit c1096ac

Please sign in to comment.