diff options
Diffstat (limited to 'src/alf/atoms.ts')
-rw-r--r-- | src/alf/atoms.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/alf/atoms.ts b/src/alf/atoms.ts index c9db8accc..1d3d5cab3 100644 --- a/src/alf/atoms.ts +++ b/src/alf/atoms.ts @@ -31,6 +31,18 @@ export const atoms = { right: 0, bottom: 0, }, + top_0: { + top: 0, + }, + right_0: { + right: 0, + }, + bottom_0: { + bottom: 0, + }, + left_0: { + left: 0, + }, z_10: { zIndex: 10, }, @@ -93,6 +105,9 @@ export const atoms = { /* * Border radius */ + rounded_0: { + borderRadius: 0, + }, rounded_2xs: { borderRadius: tokens.borderRadius._2xs, }, |