Skip to content

Commit

Permalink
chore(web): change initial scale
Browse files Browse the repository at this point in the history
  • Loading branch information
ojpbarbosa committed Nov 2, 2023
1 parent 8f4f1a7 commit 4abe91f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion web/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import Providers from './providers'
import Icon from '@/public/favicon.ico'
import Logo from '@/components/layout/logo'
import Actions from '@/components/layout/actions'
import { cn } from '@/library/utilities'

const inter = Inter({ subsets: ['latin'], fallback: ['sans-serif'] })

Expand All @@ -20,7 +21,7 @@ export const metadata: Metadata = {
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en-us">
<body className={inter.className}>
<body className={cn('scale-95', inter.className)}>
<Logo />
<Providers>
<Actions />
Expand Down

1 comment on commit 4abe91f

@vercel
Copy link

@vercel vercel bot commented on 4abe91f Nov 2, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

scisight-tutorial – ./web

scisight-tutorial-ojpbarbosa.vercel.app
scisight-tutorial-git-main-ojpbarbosa.vercel.app
scisight-tutorial.vercel.app

Please sign in to comment.