File tree Expand file tree Collapse file tree 4 files changed +3
-9
lines changed Expand file tree Collapse file tree 4 files changed +3
-9
lines changed Original file line number Diff line number Diff line change 1
- You fool, don't forget these steps:
2
-
3
- - [ ] Unit tests
4
- - [ ] Tests with Cypress
5
- - [ ] Documentation
6
- - [ ] Dummy data
Original file line number Diff line number Diff line change 62
62
v-for =" contact in data.contacts"
63
63
:key =" contact.id"
64
64
class =" flex items-center border-b border-gray-200 px-5 py-2 hover:bg-slate-50" >
65
- <avatar :data =" contact.avatar" :classes =" 'mr-2 h-5 w-5'" />
65
+ <avatar :data =" contact.avatar" :classes =" 'rounded-full mr-2 h-5 w-5'" />
66
66
67
67
<inertia-link :href =" contact.url.show" class =" text-blue-500 hover:underline" >
68
68
{{ contact.name }}
Original file line number Diff line number Diff line change 78
78
79
79
<!-- avatar -->
80
80
<div class =" flex items-center" >
81
- <avatar :data =" file.contact.avatar" :classes =" 'mr-2 h-4 w-4'" />
81
+ <avatar :data =" file.contact.avatar" :classes =" 'rounded-full mr-2 h-4 w-4'" />
82
82
<inertia-link :href =" file.contact.url.show" class =" text-sm text-blue-500 hover:underline" >
83
83
{{ file.contact.name }}
84
84
</inertia-link >
Original file line number Diff line number Diff line change 148
148
<!-- author -->
149
149
<div v-if =" note.author" class =" relative mr-3 inline" >
150
150
<div class =" icon-avatar relative flex" >
151
- <avatar :data =" note.author.avatar" :classes =" 'relative mr-1 h-3 w-3'" />
151
+ <avatar :data =" note.author.avatar" :classes =" 'rounded-full relative mr-1 h-3 w-3'" />
152
152
<span >{{ note.author.name }}</span >
153
153
</div >
154
154
</div >
You can’t perform that action at this time.
0 commit comments