Skip to content

Commit

Permalink
frontend fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Okm165 committed Aug 13, 2024
1 parent d9664af commit 6682339
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
Binary file removed dashboard/public/background.jpg
Binary file not shown.
Binary file removed dashboard/public/zetina-logo.png
Binary file not shown.
9 changes: 8 additions & 1 deletion dashboard/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,14 @@ export default function RootLayout({
return (
<html lang="en">
<head>
<link rel="icon" href="zetina-logo.png" />
<meta name="theme-color" content="#000" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="#000" />
<meta name="msapplication-navbutton-color" content="#000" />
</head>
<body className={inter.className}>{children}</body>
</html>
Expand Down
2 changes: 1 addition & 1 deletion dashboard/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ export default function Home() {
</Stepper>
<div
ref={scrollContainerRef}
className="scroll-container p-1 px-4 border-2 border-gray-800 rounded-2xl backdrop-blur-md h-20 overflow-y-scroll text-sm text-wrap break-words text-gray-500"
className="scroll-container p-1 px-4 border-2 border-gray-800 rounded-2xl backdrop-blur-md h-32 overflow-y-scroll text-xs text-wrap break-words text-gray-500"
>
{logs.map((log, index) => (
<div key={index}>{log}</div>
Expand Down

0 comments on commit 6682339

Please sign in to comment.