Skip to content

Commit

Permalink
Remove malformed className
Browse files Browse the repository at this point in the history
  • Loading branch information
hasparus committed Aug 18, 2024
1 parent 9937a8b commit 9f0231b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 29 deletions.
6 changes: 1 addition & 5 deletions packages/web/docs/src/components/team-section/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,11 +151,7 @@ function TeamAvatar({ data: [name, avatar, social] }: { data: TeamMember }) {
<div className="aspect-square min-h-[var(--size)] w-auto min-w-[var(--size)] flex-1 mix-blend-multiply xl:w-[var(--size)]">
<Image
alt=""
className={
'rounded-2xl' +
" bg-['linear-gradient(0deg,#A2C1C4_0%,#A2C1C4_100%),url(var(--src))_lightgray_50%_/_cover_no-repeat']" +
' bg-blue-300 grayscale'
}
className="rounded-2xl bg-blue-300 grayscale"
{...(typeof avatar === 'string' ? { src: avatar, width: 180, height: 180 } : avatar)}
/>
</div>
Expand Down
49 changes: 25 additions & 24 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9f0231b

Please sign in to comment.