Skip to content

Commit a158257

Browse files
backnotpropclaude
andcommitted
Widen plan viewer to max-w-4xl (896px)
Increases default width from 768px to 896px for better readability while still fitting comfortably on laptop screens. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent dd76691 commit a158257

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

apps/opencode-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@plannotator/opencode",
3-
"version": "0.4.5",
3+
"version": "0.4.6",
44
"description": "Plannotator plugin for OpenCode - interactive plan review with visual annotation",
55
"author": "backnotprop",
66
"license": "BSL-1.1",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "plannotator",
3-
"version": "0.4.5",
3+
"version": "0.4.6",
44
"private": true,
55
"description": "Interactive Plan Review for Claude Code - annotate plans visually, share with team, automatically send feedback",
66
"author": "backnotprop",

packages/editor/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ const App: React.FC = () => {
636636
<main className="flex-1 overflow-y-auto bg-grid">
637637
<div className="min-h-full flex flex-col items-center px-4 py-3 md:px-10 md:py-8 xl:px-16">
638638
{/* Mode Switcher */}
639-
<div className="w-full max-w-3xl 2xl:max-w-5xl mb-3 md:mb-4 flex justify-start">
639+
<div className="w-full max-w-4xl 2xl:max-w-5xl mb-3 md:mb-4 flex justify-start">
640640
<ModeSwitcher mode={editorMode} onChange={setEditorMode} taterMode={taterMode} />
641641
</div>
642642

packages/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@plannotator/server",
3-
"version": "0.4.5",
3+
"version": "0.4.6",
44
"private": true,
55
"description": "Shared server implementation for Plannotator plugins",
66
"main": "index.ts",

packages/ui/components/DecisionBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export const DecisionBar: React.FC<DecisionBarProps> = ({
8585

8686
return (
8787
<div className="fixed bottom-0 left-0 right-0 p-4 bg-card/95 backdrop-blur-xl border-t border-border z-50">
88-
<div className="max-w-3xl 2xl:max-w-5xl mx-auto flex items-center gap-4">
88+
<div className="max-w-4xl 2xl:max-w-5xl mx-auto flex items-center gap-4">
8989
{/* Status info */}
9090
<div className="flex-1 text-sm text-muted-foreground">
9191
{annotationCount > 0 ? (

packages/ui/components/Viewer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -517,11 +517,11 @@ export const Viewer = forwardRef<ViewerHandle, ViewerProps>(({
517517
};
518518

519519
return (
520-
<div className="relative z-50 w-full max-w-3xl 2xl:max-w-5xl">
520+
<div className="relative z-50 w-full max-w-4xl 2xl:max-w-5xl">
521521
{taterMode && <TaterSpriteSitting />}
522522
<article
523523
ref={containerRef}
524-
className="w-full max-w-3xl 2xl:max-w-5xl bg-card border border-border/50 rounded-xl shadow-xl p-5 md:p-8 lg:p-10 xl:p-12 relative"
524+
className="w-full max-w-4xl 2xl:max-w-5xl bg-card border border-border/50 rounded-xl shadow-xl p-5 md:p-8 lg:p-10 xl:p-12 relative"
525525
>
526526
{/* Header buttons */}
527527
<div className="absolute top-3 right-3 md:top-5 md:right-5 flex items-start gap-2">

0 commit comments

Comments
 (0)