Skip to content

Commit

Permalink
feat: update ui
Browse files Browse the repository at this point in the history
  • Loading branch information
naturexie committed Feb 26, 2025
1 parent c161a9b commit e38b91d
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion components/Header/Bridge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export const bridgeList: IBridge[] = [
{
title: "Aggregate Bridge",
subTitle: "Arbitrum | Ethereum | Base Optimism | Scroll",
link: "https://app.ref.finance/bridge",
link: "https://dex.rhea.finance/bridge",
},
{
title: "Token Bridge",
Expand Down
4 changes: 2 additions & 2 deletions pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,12 +135,12 @@ function Upgrade({ Component, pageProps }) {
</div>
) : (
<Layout>
<Popup className="lg:hidden" />
{/* <Popup className="lg:hidden" /> */}
<Init />
<Modal />
<ToastMessage />
<Component {...pageProps} />
<Popup className="xsm:hidden" />
{/* <Popup className="xsm:hidden" /> */}
<RpcList />
<PubTestModal />
</Layout>
Expand Down
Binary file modified public/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/rheaLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion screens/Market/table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function TableHead({ sorting }) {
</div>
</div>
<div
className="col-span-1 bg-gray-300 rounded-t-2xl flex items-center text-sm text-black cursor-pointer pl-4 xl:pl-8 whitespace-nowrap"
className="col-span-1 bg-white rounded-t-2xl flex items-center text-sm text-black cursor-pointer pl-4 xl:pl-8 whitespace-nowrap"
onClick={() => {
dispatch_sort_action("availableLiquidityMoney");
}}
Expand Down
6 changes: 3 additions & 3 deletions screens/TokenDetail/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1256,7 +1256,7 @@ function OuterLink() {
key="1"
className="lg:opacity-60 lg:hover:opacity-100"
onClick={() => {
window.open("https://app.ref.finance/");
window.open("https://dex.rhea.finance/");
}}
/>
</LabelOuterLinkIcon>
Expand All @@ -1275,9 +1275,9 @@ function OuterLink() {
const pool_id = tokenId.split("-")[1];
const is_stable_pool = STABLE_POOL_IDS.includes(pool_id);
if (is_stable_pool) {
window.open(`https://app.ref.finance/sauce/${pool_id}`);
window.open(`https://dex.rhea.finance/sauce/${pool_id}`);
} else {
window.open(`https://app.ref.finance/pool/${pool_id}`);
window.open(`https://dex.rhea.finance/pool/${pool_id}`);
}
}}
/>
Expand Down
3 changes: 2 additions & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ module.exports = {
1150: "#2F324B",
},
red: {
50: "#FF6BA9",
// 50: "#ff7a00",
50: "#FF5500",
100: "#FF68A7",
},
yellow: {
Expand Down

0 comments on commit e38b91d

Please sign in to comment.