Bluesky's "Application Layout Framework"

add rounded_xl atom

+4
+3
src/atoms/common.ts
··· 123 rounded_lg: { 124 borderRadius: tokens.borderRadius.lg, 125 }, 126 rounded_full: { 127 borderRadius: tokens.borderRadius.full, 128 },
··· 123 rounded_lg: { 124 borderRadius: tokens.borderRadius.lg, 125 }, 126 + rounded_xl: { 127 + borderRadius: tokens.borderRadius.xl, 128 + }, 129 rounded_full: { 130 borderRadius: tokens.borderRadius.full, 131 },
+1
src/tokens.ts
··· 38 sm: 8, 39 md: 12, 40 lg: 16, 41 full: 999, 42 } as const 43
··· 38 sm: 8, 39 md: 12, 40 lg: 16, 41 + xl: 20, 42 full: 999, 43 } as const 44