Skip to content

Commit

Permalink
Merge pull request #23 from oraichain/feat/header
Browse files Browse the repository at this point in the history
update: update title in header
  • Loading branch information
ninhxuanhuan authored Oct 17, 2024
2 parents 0da317c + b488a92 commit aeed8f0
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
18 changes: 17 additions & 1 deletion src/layouts/Menu.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,22 @@
justify-content: space-between;
}

.menuMiddle {
display: flex;
align-items: center;
justify-content: center;
gap: var(--dimension-spacing-col-between-md, 8px);
padding: 16px;
.menuMiddleText {
color: var(--colors-neutral-text-body, #b4b7bb);
font-family: 'IBM Plex Sans';
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 20px; /* 142.857% */
}
}

.menuLeft {
display: flex;
align-items: center;
Expand All @@ -204,7 +220,7 @@
}

.menuRight {
margin-left: auto;
// margin-left: auto;
display: flex;
align-items: center;
gap: 8px;
Expand Down
10 changes: 10 additions & 0 deletions src/layouts/Menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,16 @@ const Menu: React.FC = () => {
</div>

<div className={classNames(styles.wrapMenuRight)}>
<Link
to="https://x.com/oraichain/status/1845160334417653796"
className={classNames(styles.menuMiddle)}
target="_blank"
>
<img src={TopBarIcon} alt="top_bar_icon" />
<div className={classNames(styles.menuMiddleText)}>
Oraichain’s Ecosystem Growth Fund offers up to $3M in funding for 2024-2025
</div>
</Link>

<div className={classNames(styles.menuRight)}>
<GithubConnect />
Expand Down

0 comments on commit aeed8f0

Please sign in to comment.