fix: reduce border radius on quick action buttons (refs #2)
All checks were successful
Deploy to Staging / Build Images (pull_request) Successful in 2m35s
Deploy to Staging / Deploy to Staging (pull_request) Successful in 36s
Deploy to Staging / Verify Staging (pull_request) Successful in 5s
Deploy to Staging / Notify Staging Ready (pull_request) Successful in 5s
Deploy to Staging / Notify Staging Failure (pull_request) Has been skipped

Changed from borderRadius 3 (24px) to 1.5 (12px) for more rectangular look

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Eric Gullickson
2026-01-02 22:10:28 -06:00
parent 927b1a4128
commit 55fb01d5bd

View File

@@ -83,7 +83,7 @@ export const QuickActions: React.FC<QuickActionsProps> = ({
onClick={action.onClick} onClick={action.onClick}
sx={{ sx={{
p: 2, p: 2,
borderRadius: 3, borderRadius: 1.5,
bgcolor: 'action.hover', bgcolor: 'action.hover',
border: '1px solid transparent', border: '1px solid transparent',
display: 'flex', display: 'flex',