Skip to content

Commit

Permalink
Home button tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
sbddesign committed May 8, 2022
1 parent 7bb6f43 commit ef0bdfc
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions frontend/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import NewAccount from "./routes/NewAccount";
import Onboarding from './routes/Onboarding';
import Receive from './routes/Receive';
import React from 'react';
import { ContactsIcon, CrossIcon, GearIcon, HomeIcon, MenuIcon } from '@bitcoin-design/bitcoin-icons-react/filled';
import { ContactsIcon, CrossIcon, GearIcon, HomeIcon, MenuIcon } from '@bitcoin-design/bitcoin-icons-react/outline';
import { ChartSquareBarIcon } from '@heroicons/react/solid';
import NewFamily from './routes/NewFamily';
import Invite from './routes/Invite';
Expand All @@ -32,10 +32,9 @@ function App() {

return (
<div className="app">
<nav className="mt-4 ml-4">
<nav className="fixed top-10 left-10 z-50">
<Link to="/">
<HomeIcon width="38" height="38" />
<h1>Home</h1>
<HomeIcon className="w-8 h-8" />
</Link>
</nav>
<nav className={"fixed bg-fam-bg-dark h-screen w-screen z-50 p-8 space-y-8 transition-all " + (menuActive ? 'right-0' : 'right-full')}>
Expand Down

0 comments on commit ef0bdfc

Please sign in to comment.