Skip to content

Commit

Permalink
Remove unused border attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffdaley committed Sep 8, 2023
1 parent e10923e commit 497f58f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions web/app/components/person/avatar.hbs
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<div
class="overflow-hidden rounded-full flex justify-center items-center bg-color-palette-alpha-300 bg-color-palette-neutral-200 border border-transparent
{{if this.sizeIsSmall 'w-5 h-5'}}
{{if this.sizeIsMedium 'w-7 h-7'}}
class="bg-color-palette-alpha-300 flex items-center justify-center overflow-hidden rounded-full bg-color-palette-neutral-200
{{if this.sizeIsSmall 'h-5 w-5'}}
{{if this.sizeIsMedium 'h-7 w-7'}}
"
...attributes
>
{{#if @imgURL}}
<img src={{@imgURL}} referrerpolicy="no-referrer" class="w-full" />
{{else}}
<div class="text-body-100 flex">
<div class="flex text-body-100">
{{#if @email}}
<span class="capitalize">
{{get-first-letter @email}}
Expand Down

0 comments on commit 497f58f

Please sign in to comment.