Skip to content

Commit

Permalink
Merge pull request #245 from stabilitydao/platform-pages
Browse files Browse the repository at this point in the history
0.12.4-alpha: hot bugfixes
  • Loading branch information
a17 authored Oct 4, 2024
2 parents 728db24 + 1e55394 commit fb9475c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "stability-ui",
"type": "module",
"version": "0.12.3-alpha",
"version": "0.12.4-alpha",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Header/Wallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ const Wallet = (): JSX.Element => {
) : (
<img
className="w-5 md:hidden block"
src="/public/wallet.svg"
src="/wallet.svg"
alt="walletImage"
/>
)}
Expand Down
8 changes: 4 additions & 4 deletions src/modules/Vaults/components/Filters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ const Filters: React.FC<IProps> = memo(({ filters, setFilters }) => {
<div
onClick={() => activeFiltersHandler(filter)}
className={`w-[160px] flex items-center justify-center rounded-2xl h-10 hover:bg-[#2B1570] transition duration-100 delay-100 ${
filter.state && "bg-[#612FFB]"
filter.state && "bg-[#612FFB] hover:bg-[#612FFB]"
} bg-[#1F0F50] cursor-pointer`}
>
<p
Expand Down Expand Up @@ -209,7 +209,7 @@ const Filters: React.FC<IProps> = memo(({ filters, setFilters }) => {
className={`transition delay-[50ms] ${
dropDownSelector ? "rotate-[180deg]" : "rotate-[0deg]"
}`}
src="/public/arrow-down.svg"
src="/arrow-down.svg"
alt="arrowDown"
/>
</div>
Expand Down Expand Up @@ -252,7 +252,7 @@ const Filters: React.FC<IProps> = memo(({ filters, setFilters }) => {
onClick={() => activeFiltersHandler(filter, "All")}
className={`py-1 px-4 cursor-pointer hover:bg-[#2B1570] hover:text-[#8F7AFC] rounded-xl transition duration-100 delay-100 ${
!filter.state
? "bg-[#612FFB] text-[#F9F8FA] h-8"
? "bg-[#612FFB] text-[#F9F8FA] h-8 hover:bg-[#612FFB] hover:text-[#F9F8FA]"
: "text-[#8F7AFC] h-full"
} rounded-md`}
>
Expand All @@ -262,7 +262,7 @@ const Filters: React.FC<IProps> = memo(({ filters, setFilters }) => {
onClick={() => activeFiltersHandler(filter)}
className={`px-2 py-1 cursor-pointer hover:bg-[#2B1570] hover:text-[#8F7AFC] rounded-xl transition duration-100 delay-100 ${
filter.state
? "bg-[#612FFB] text-[#F9F8FA] h-8"
? "bg-[#612FFB] text-[#F9F8FA] h-8 hover:bg-[#612FFB] hover:text-[#F9F8FA]"
: "text-[#8F7AFC] h-full"
} rounded-md`}
>
Expand Down
2 changes: 1 addition & 1 deletion src/ui/APRtimeSwitcher.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ const APRtimeSwitcher = (): JSX.Element => {
className={`transition delay-[50ms] ${
dropDownSelector ? "rotate-[180deg]" : "rotate-[0deg]"
}`}
src="/public/arrow-down.svg"
src="/arrow-down.svg"
alt="arrowDown"
/>
</div>
Expand Down

0 comments on commit fb9475c

Please sign in to comment.