Skip to content

Commit

Permalink
Merge pull request #119 from LasticXYZ/poppyseedDev-patch-3
Browse files Browse the repository at this point in the history
Update Navbar.tsx
  • Loading branch information
poppyseedDev authored Mar 29, 2024
2 parents 73cc04d + 1de4c3c commit 139db9e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/app/(App)/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const Navbar: FC<NavbarProps> = ({ navigation, children }) => {
<div className="flex-shrink-0 flex items-center justify-between space-x-5 border-b border-gray-9 pl-6 pr-2 py-6 mt-2">
{!isCollapsed && (
<div className="flex gap-1 items-center">
<Link href="/" className="font-bold flex items-center mb-4">
<div className="font-bold flex items-center">
<Image
src="/assets/Images/Logos/lastic-logo.png"
width={130}
Expand All @@ -43,11 +43,11 @@ const Navbar: FC<NavbarProps> = ({ navigation, children }) => {
quality={100}
alt="Lastic Logo"
/>
</Link>
</div>

{/* Chevron Icon */}
<ChevronLeftIcon
className="h-4 w-5 hover:text-gray-12 cursor-pointer"
className="h-4 w-5 hover:text-gray-12 cursor-pointer mt-1"
aria-hidden="true"
onClick={toggleSidebar}
/>
Expand Down Expand Up @@ -99,7 +99,7 @@ const Navbar: FC<NavbarProps> = ({ navigation, children }) => {
{!isCollapsed && (
<>
<SideBarAccountName />
<div className="text-gray-8 border-t border-gray-9 mt-20 font-montserrat text-xs font-semibold px-4 pt-6">
<div className="text-gray-8 border-t border-gray-9 mt-10 font-montserrat text-xs font-semibold px-4 pt-6">
CHAIN
</div>
<div className="mt-2 text-gray-18 flex flex-col px-2">
Expand Down
9 changes: 5 additions & 4 deletions src/components/web3/SideBarAccountName.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const SideBarAccountName = () => {

return (
<div>
<div className="text-gray-8 border-t border-gray-9 mt-20 font-montserrat text-xs font-semibold px-4 pt-6">
<div className="text-gray-8 border-t border-gray-9 mt-10 font-montserrat text-xs font-semibold px-4 pt-6">
ACCOUNT
</div>
<div className="mt-2 text-gray-18 flex flex-col px-2">
Expand All @@ -54,11 +54,12 @@ export const SideBarAccountName = () => {
</span>
{toShortAddress(activeAccount?.address, 6)}
</div>

<div className="text-gray-8 border-t border-gray-9 mt-20 font-montserrat text-xs font-semibold px-4 pt-6">
</div>
<div>
<div className="text-gray-8 border-t border-gray-9 mt-10 font-montserrat text-xs font-semibold px-4 pt-6">
BALANCES
</div>
<div className="mt-2 text-gray-18 flex flex-col px-2">
<div className="mt-2 ml-2 text-gray-18 flex flex-col px-2">
<table className="w-full text-md">
<tbody>
<tr>
Expand Down

0 comments on commit 139db9e

Please sign in to comment.