Skip to content

Commit

Permalink
style(vue): Extend the width of the user uid
Browse files Browse the repository at this point in the history
Signed-off-by: Baptiste Fotia <[email protected]>
  • Loading branch information
zak39 committed Mar 13, 2024
1 parent 37e3f99 commit a2793af
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/UserCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<div class="icon-member" :class="$store.getters.isMember($route.params.space, user) ? 'is-member' : ''" />
<NcAvatar :display-name="user.name" :user="user.uid" />
<div class="user-name">
<span> {{ user.name }} </span>
<span>{{ user.name }}</span>
</div>
</div>
<div class="user-entry-actions">
Expand Down Expand Up @@ -85,6 +85,10 @@ export default {

<style scoped>
.avatar {
width: 75%;
}
.user-card {
display: flex;
}
Expand Down

0 comments on commit a2793af

Please sign in to comment.