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 apps/web/src/app/(sandbox)/SandboxShell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export function SandboxShell({
<div className="h-viewport flex flex-col overflow-hidden">
{/* Mobile-only top bar */}
<div
className={`md:hidden top-0 ${zIndex('NAV_HEADER')} bg-background w-full shrink-0 outline outline-b outline-border`}
className={`md:hidden top-0 ${zIndex('NAV_HEADER')} w-full shrink-0 bg-card`}
>
{isSignedIn ? (
<NavbarHeader />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -315,12 +315,12 @@ export function AcpTextMessage({ msg }: AcpTextMessageProps) {
) : null}
{requestUserInputResponse.questionTexts.map(
(questionText, index) => (
<span
<p
key={index}
className="mt-1 block italic text-muted-foreground"
className="mt-1 border-l-2 pl-2 text-muted-foreground"
>
{questionText}
</span>
</p>
),
)}
<span className="mt-2 block">{baseContent}</span>
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/web/src/components/layout/navbar/NavbarHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const NavbarHeader = ({ className, ...props }: NavbarHeaderProps) => {
return (
<div
className={cn(
'flex items-center justify-between gap-2 h-(--header-height) mx-auto px-1 pr-5',
'flex items-center justify-between gap-2 h-(--header-height) mx-auto px-1 pr-2 md:pr-5',
className,
)}
{...props}
Expand Down
Loading