tangled
alpha
login
or
join now
aylac.top
/
pdsls
forked from
pds.ls/pdsls
0
fork
atom
atproto explorer
0
fork
atom
overview
issues
pulls
pipelines
remove shadow on avatar
handle.invalid
5 months ago
88eba13e
b75ad5cd
verified
This commit was signed with the committer's
known signature
.
handle.invalid
SSH Key Fingerprint:
SHA256:mBrT4x0JdzLpbVR95g1hjI1aaErfC02kmLRkPXwsYCk=
+1
-1
1 changed file
expand all
collapse all
unified
split
src
components
account.tsx
+1
-1
src/components/account.tsx
···
111
111
class="flex items-center rounded-lg p-1 hover:bg-neutral-200 active:bg-neutral-300 dark:hover:bg-neutral-700 dark:active:bg-neutral-600"
112
112
>
113
113
{agent() && avatar() ?
114
114
-
<img src={avatar()} class="dark:shadow-dark-800 size-5 rounded-full shadow-xs" />
114
114
+
<img src={avatar()} class="size-5 rounded-full" />
115
115
: <span class="iconify lucide--circle-user-round text-xl"></span>}
116
116
</button>
117
117
</>