summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDavid Hill <[email protected]>2026-01-17 21:43:03 +0000
committerDavid Hill <[email protected]>2026-01-17 21:46:23 +0000
commitd3baaf74089712dc0ebf3ef2e3cbd491658d2d43 (patch)
tree54a4f7d20358d613bf142bd36d98b79ece3a5b7d
parent0384e6b0e15a4ea033c09da8fd9742f9ead8b8a6 (diff)
downloadopencode-d3baaf74089712dc0ebf3ef2e3cbd491658d2d43.tar.gz
opencode-d3baaf74089712dc0ebf3ef2e3cbd491658d2d43.zip
fix: shrink project notification dot and mask
-rw-r--r--packages/app/src/pages/layout.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/app/src/pages/layout.tsx b/packages/app/src/pages/layout.tsx
index 27535c01b..0e46298e7 100644
--- a/packages/app/src/pages/layout.tsx
+++ b/packages/app/src/pages/layout.tsx
@@ -1018,7 +1018,7 @@ export default function Layout(props: ParentProps) {
const notifications = createMemo(() => notification.project.unseen(props.project.worktree))
const hasError = createMemo(() => notifications().some((n) => n.type === "error"))
const name = createMemo(() => props.project.name || getFilename(props.project.worktree))
- const mask = "radial-gradient(circle 6px at calc(100% - 5px) 5px, transparent 6px, black 6.5px)"
+ const mask = "radial-gradient(circle 5px at calc(100% - 4px) 4px, transparent 5px, black 5.5px)"
const opencode = "4b0ea68d7af9a6031a7ffda7ad66e0cb83315750"
return (
@@ -1039,7 +1039,7 @@ export default function Layout(props: ParentProps) {
<Show when={notifications().length > 0 && props.notify}>
<div
classList={{
- "absolute top-px right-px size-2 rounded-full z-10": true,
+ "absolute top-px right-px size-1.5 rounded-full z-10": true,
"bg-icon-critical-base": hasError(),
"bg-text-interactive-base": !hasError(),
}}