Bluesky app fork with some witchin' additions 💫

only round buttons if size is set (#9377)

authored by samuel.fm and committed by GitHub cb2af3cd 59ffaa8a

Changed files
+3 -5
src
components
view
com
notifications
+3 -4
src/components/Button.tsx
··· 434 434 } 435 435 436 436 if (shape === 'default') { 437 - baseStyles.push(a.rounded_full) 438 437 if (size === 'large') { 439 - baseStyles.push({ 438 + baseStyles.push(a.rounded_full, { 440 439 paddingVertical: 12, 441 440 paddingHorizontal: 25, 442 441 gap: 3, 443 442 }) 444 443 } else if (size === 'small') { 445 - baseStyles.push({ 444 + baseStyles.push(a.rounded_full, { 446 445 paddingVertical: 8, 447 446 paddingHorizontal: 13, 448 447 gap: 3, 449 448 }) 450 449 } else if (size === 'tiny') { 451 - baseStyles.push({ 450 + baseStyles.push(a.rounded_full, { 452 451 paddingVertical: 5, 453 452 paddingHorizontal: 9, 454 453 gap: 2,
-1
src/view/com/notifications/NotificationFeedItem.tsx
··· 571 571 {padding: 10}, 572 572 a.pr_lg, 573 573 t.atoms.border_contrast_low, 574 - a.rounded_0, 575 574 item.notification.isRead 576 575 ? undefined 577 576 : {