tangled
alpha
login
or
join now
esb.lol
/
alf
9
fork
atom
Bluesky's "Application Layout Framework"
9
fork
atom
overview
issues
pulls
1
pipelines
add rounded_xl atom
samuel.fm
3 months ago
02d9dce1
7736c235
+4
2 changed files
expand all
collapse all
unified
split
src
atoms
common.ts
tokens.ts
+3
src/atoms/common.ts
···
123
123
rounded_lg: {
124
124
borderRadius: tokens.borderRadius.lg,
125
125
},
126
126
+
rounded_xl: {
127
127
+
borderRadius: tokens.borderRadius.xl,
128
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
41
+
xl: 20,
41
42
full: 999,
42
43
} as const
43
44