Bluesky's "Application Layout Framework"

add rounded_xl atom

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