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
rounded_lg: {
124
borderRadius: tokens.borderRadius.lg,
125
},
0
0
0
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,
0
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