Skip to content
Closed
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
6 changes: 3 additions & 3 deletions apps/portal/src/app/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ export function Header() {
const pathname = usePathname();

return (
<header className="flex w-full flex-col gap-2 border-b bg-background pt-4 px-4 lg:px-8 overflow-hidden">
<header className="flex w-full flex-col gap-2 border-b bg-background p-4 lg:px-8 overflow-hidden">
<div className="container flex items-center justify-between gap-6">
{/* Top row */}
<div className="flex items-center gap-2">
Expand Down Expand Up @@ -254,14 +254,14 @@ export function Header() {
onClick={() => router.push("/chat")}
variant="ghost"
>
<MessageCircleIcon className="size-7" />
<MessageCircleIcon className="size-5 lg:size-6" />
</Button>
<Button
className="p-2"
onClick={() => setShowBurgerMenu(!showBurgerMenu)}
variant="ghost"
>
<MenuIcon className="size-7" />
<MenuIcon className="size-5 lg:size-6" />
</Button>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion apps/portal/src/components/Layouts/DocLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export function DocLayout(props: DocLayoutProps) {
>
<aside
className={clsx(
"sticky top-sticky-top-height h-sidebar-height flex-col overflow-y-hidden",
"sticky top-sticky-top-height h-sidebar-height flex-col overflow-y-scroll no-scrollbar",
"hidden xl:flex",
)}
>
Expand Down
2 changes: 1 addition & 1 deletion apps/portal/src/components/others/DocSearch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ export function DocSearch(props: { variant: "icon" | "search" }) {
{!forDesktop && (
<DialogTrigger asChild>
<Button className="px-3" variant="ghost">
<SearchIcon className="size-6 text-foreground" />
<SearchIcon className="size-5 lg:size-6 text-foreground" />
</Button>
</DialogTrigger>
)}
Expand Down
6 changes: 3 additions & 3 deletions apps/portal/src/components/others/theme/ThemeSwitcher.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ export function ThemeSwitcher(props: { className?: string }) {
variant="outline"
>
{!hasMounted ? (
<Skeleton className="size-6 lg:size-5" />
<Skeleton className="size-5 lg:size-6" />
) : theme === "light" ? (
<SunIcon className="size-6 lg:size-5" />
<SunIcon className="size-5 lg:size-6" />
) : (
<MoonIcon className="size-6 lg:size-5" />
<MoonIcon className="size-5 lg:size-6" />
)}
</Button>
);
Expand Down