Skip to content

Commit

Permalink
make changes to layout.
Browse files Browse the repository at this point in the history
  • Loading branch information
KhudaDad414 committed Apr 29, 2024
1 parent 2c1f515 commit 5301f0e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions apps/studio-next/src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
/* eslint-disable no-undef */
import { Toolbar } from '@/components/Toolbar'
import './globals.css'
import { Inter } from 'next/font/google'

const inter = Inter({ subsets: ['latin'] })
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body className={inter.className}>
<body>
<Toolbar />
<main className="flex flex-col w-full h-screen">
<main className="flex flex-col w-full h-[calc(100vh-4rem)]">
{children}
</main>
<div id="preloader">
Expand Down
2 changes: 1 addition & 1 deletion apps/studio-next/src/components/Navigationv3.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ interface NavigationSectionProps {
hash: string;
}

export const NAVIGATION_SUB_SECTION_STYLE = 'p-2 pl-3 text-white cursor-pointer text-xs border-t border-gray-700 hover:bg-gray-900';
export const NAVIGATION_SUB_SECTION_STYLE = 'p-2 pl-6 text-white cursor-pointer text-xs border-t border-gray-700 hover:bg-gray-900';
export const NAVIGATION_SECTION_STYLE = 'p-2 pl-3 text-white cursor-pointer hover:bg-gray-900'

const ServersNavigation: React.FunctionComponent<NavigationSectionProps> = ({
Expand Down

0 comments on commit 5301f0e

Please sign in to comment.