Skip to content
Open
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 surfaces/gui/src/components/AuditView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export function AuditView() {
}, []);

return (
<main className="flex-1 min-w-0 flex bg-paper">
<main className="flex-1 min-w-0 min-h-0 flex bg-paper">
<div className="flex-1 min-w-0 overflow-y-auto hairline-scroll">
<div className="max-w-4xl mx-auto px-7 py-6">
<PanelHead
Expand Down
2 changes: 1 addition & 1 deletion surfaces/gui/src/components/InboxView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export function InboxView({
const routingLabel = routingName ? `#${routingName}` : routing;

return (
<main className="flex-1 min-w-0 flex bg-paper">
<main className="flex-1 min-w-0 min-h-0 flex bg-paper">
<div className="flex-1 min-w-0 overflow-y-auto hairline-scroll">
<div className="max-w-4xl mx-auto px-7 py-6">
<PanelHead
Expand Down
2 changes: 1 addition & 1 deletion surfaces/gui/src/components/IntegrationsView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function IntegrationsView() {
}, []);

return (
<main className="flex-1 min-w-0 flex bg-paper">
<main className="flex-1 min-w-0 min-h-0 flex bg-paper">
<nav className="page-subnav w-[208px] shrink-0 border-r border-line bg-panel/40 px-3 py-4">
<div className="px-2 text-[13.5px] font-semibold mb-3 flex items-center gap-2">
<Icon name="plug" size={16} /> Connectors
Expand Down
2 changes: 1 addition & 1 deletion surfaces/gui/src/components/ScheduledView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function toCron(time: string, freq: string): string {
// The §28 page shell: full-bleed main, centered ≤4xl column — same as Connectors/Activity/Inbox.
function Shell({ children }: { children: React.ReactNode }) {
return (
<main className="flex-1 min-w-0 flex bg-paper">
<main className="flex-1 min-w-0 min-h-0 flex bg-paper">
<div className="flex-1 min-w-0 overflow-y-auto hairline-scroll">
<div className="max-w-4xl mx-auto px-7 py-6">{children}</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion surfaces/gui/src/components/SettingsView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export function SettingsView({
const [tab, setTab] = useState<SetTab>(wanted);

return (
<main className="flex-1 min-w-0 flex bg-paper">
<main className="flex-1 min-w-0 min-h-0 flex bg-paper">
<nav className="page-subnav w-[208px] shrink-0 border-r border-line bg-panel/40 px-3 py-4">
<div className="px-2 text-[13.5px] font-semibold mb-3 flex items-center gap-2">
<Icon name="gear" size={16} /> Settings
Expand Down