Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/src/components/scenes/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const SceneLayout = ({ children }: { children: React.ReactNode }) => {
scrollbarWidth: "none",
}}
>
<div className="w-full hidden lg:block lg:px-6 lg:py-5">
<div className="w-full hidden lg:block">
<HeaderContainer />
</div>
{children}
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/ui/connection/ConnectionView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const ConnectionView = ({
<button
type="button"
onClick={onDisconnect}
className="p-2 rounded bg-background-100 hover:bg-background-150 border border-background-200"
className="p-2 rounded bg-background-100 hover:bg-background-150 outline outline-1 outline-background-200"
>
<SignOutIcon size="default" />
</button>
Expand Down
10 changes: 5 additions & 5 deletions client/src/components/ui/modules/arcade-header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export interface ArcadeHeaderProps extends HTMLAttributes<HTMLDivElement> {
}

export const ArcadeHeader = memo(
({ children, onClick, onLogoClick, ...props }: ArcadeHeaderProps) => {
({ children, onLogoClick, ...props }: ArcadeHeaderProps) => {
const { isMobile } = useDevice();

return (
Expand All @@ -26,19 +26,19 @@ export const ArcadeHeader = memo(
<SidebarToggle />
</div>
) : (
<Link to="/" onClick={onLogoClick}>
<Link to="/" onClick={onLogoClick} className="px-6 py-7">
<div
className={cn(
"flex items-center justify-center gap-2 text-primary w-auto",
)}
>
<ArcadeIcon className="h-5" />
<ArcadeIconText className="h-5" />
<ArcadeIcon className="h-8" />
<ArcadeIconText className="h-6" />
</div>
</Link>
)}

<div className="grow flex justify-end items-center gap-2 select-none">
<div className="grow flex justify-end items-center gap-2 select-none lg:p-6">
{children}
</div>
</div>
Expand Down