Skip to content

Commit

Permalink
final updates from heading
Browse files Browse the repository at this point in the history
  • Loading branch information
C committed Jan 30, 2023
1 parent fc2dfee commit bab7036
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
6 changes: 1 addition & 5 deletions src/components/ContentContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,18 @@ export const ContentContainer: React.FC<Props> = ({ children }) => {
<div className="items-center drawer-content">
{children}
</div>

{/* SideBar / Drawer */}
<div className="drawer-side">
<label htmlFor="my-drawer" className="drawer-overlay gap-6"></label>

<ul className="p-4 overflow-y-auto menu w-80 bg-base-100 gap-10 sm:flex">
<li>
<Text variant="heading" className='font-extrabold tracking-tighter text-center'>Menu</Text>
<Text variant="heading" className='font-extrabold tracking-tighter text-center text-transparent bg-clip-text bg-gradient-to-br from-indigo-500 to-fuchsia-500'>Menu</Text>
</li>
<li>

<NavElement
label="Home"
href="/"
/>

</li>
<li>
<NavElement
Expand Down
2 changes: 0 additions & 2 deletions src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { AppBar } from '../components/AppBar';
import { ContentContainer } from '../components/ContentContainer';
import { Footer } from '../components/Footer';
import Notifications from '../components/Notification'

require('@solana/wallet-adapter-react-ui/styles.css');
require('../styles/globals.css');

Expand All @@ -16,7 +15,6 @@ const App: FC<AppProps> = ({ Component, pageProps }) => {
<Head>
<title>Solana Scaffold Lite</title>
</Head>

<ContextProvider>
<div className="flex flex-col h-screen">
<Notifications />
Expand Down

0 comments on commit bab7036

Please sign in to comment.