fix: add padding to toolbar container to prevent add button shadow clipping (#1951)

The orange add button's circular shadow appeared square because the
parent overflow-x-hidden container was clipping it at the edges.
This commit is contained in:
Satoru
2026-04-08 21:17:19 +08:00
committed by GitHub
parent dc4524e960
commit 24555275bb
+1 -1
View File
@@ -1035,7 +1035,7 @@ function App() {
)} )}
<div <div
ref={toolbarRef} ref={toolbarRef}
className="flex flex-1 min-w-0 overflow-x-hidden items-center" className="flex flex-1 min-w-0 overflow-x-hidden items-center py-4 pr-2"
> >
<div <div
className="flex shrink-0 items-center gap-1.5 ml-auto" className="flex shrink-0 items-center gap-1.5 ml-auto"