Skip to content

Commit

Permalink
build: bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Majorfi committed Mar 4, 2024
1 parent bdf1129 commit fbf1d10
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@yearn-finance/web-lib",
"version": "3.0.170",
"version": "3.0.171",
"main": "./dist/index.js",
"types": "./dist/index.d.js",
"files": [
Expand Down
9 changes: 7 additions & 2 deletions src/components/LogoPopover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,12 @@ export function LogoPopover(): ReactElement {
})}
</div>
<div className={'pt-2 text-center'}>
<b className={'text-base'}>{name}</b>
<b
className={
'text-base text-neutral-900 dark:text-neutral-0'
}>
{name}
</b>
</div>
</div>
</Link>
Expand All @@ -177,7 +182,7 @@ export function LogoPopover(): ReactElement {
<div
className={cl(
'relative flex h-full w-full cursor-pointer flex-col items-center justify-center transition-all rounded p-4',
'bg-[#010A3B] hover:brightness-125'
'bg-[#EBEBEB] hover:bg-[#c3c3c380] dark:bg-[#010A3B] hover:dark:brightness-125'
)}>
<div className={'z-10 flex w-full flex-col items-center'}>
<V3Logo className={'h-20'} />
Expand Down

0 comments on commit fbf1d10

Please sign in to comment.