Compare commits

...

2 Commits

Author SHA1 Message Date
Dotta
a825f96509 Install doc-maintenance skill in .claude via symlink
Symlinks .claude/skills/doc-maintenance -> .agents/skills/doc-maintenance
so Claude Code picks up the skill automatically.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-15 20:24:59 -05:00
Dotta
31a264465a Fix mobile horizontal overflow on issue page document/attachment buttons
Add flex-wrap to the flex containers holding the "Upload attachment" and
"New document" buttons so they wrap to a new line on narrow screens
instead of forcing horizontal scroll.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-15 20:24:13 -05:00
3 changed files with 5 additions and 4 deletions

View File

@@ -0,0 +1 @@
../../.agents/skills/doc-maintenance

View File

@@ -519,7 +519,7 @@ export function IssueDocumentsSection({
return (
<div className="space-y-3">
{isEmpty && !draft?.isNew ? (
<div className="flex items-center justify-end gap-2">
<div className="flex flex-wrap items-center justify-end gap-2">
{extraActions}
<Button variant="outline" size="sm" onClick={beginNewDocument}>
<Plus className="mr-1.5 h-3.5 w-3.5" />
@@ -527,9 +527,9 @@ export function IssueDocumentsSection({
</Button>
</div>
) : (
<div className="flex items-center justify-between gap-2">
<div className="flex flex-wrap items-center justify-between gap-2">
<h3 className="text-sm font-medium text-muted-foreground">Documents</h3>
<div className="flex items-center gap-2">
<div className="flex flex-wrap items-center gap-2">
{extraActions}
<Button variant="outline" size="sm" onClick={beginNewDocument}>
<Plus className="mr-1.5 h-3.5 w-3.5" />

View File

@@ -882,7 +882,7 @@ export function IssueDetail() {
}}
onDrop={(evt) => void handleAttachmentDrop(evt)}
>
<div className="flex items-center justify-between gap-2">
<div className="flex flex-wrap items-center justify-between gap-2">
<h3 className="text-sm font-medium text-muted-foreground">Attachments</h3>
{attachmentUploadButton}
</div>