diff --git a/src/alf/atoms.ts b/src/alf/atoms.ts
index eb130f3a..1ccb0460 100644
--- a/src/alf/atoms.ts
+++ b/src/alf/atoms.ts
@@ -1,7 +1,8 @@
-import {Platform} from 'react-native'
+import {Platform, StyleSheet} from 'react-native'
import * as tokens from '#/alf/tokens'
import {native, web} from '#/alf/util/platform'
+import hairlineWidth = StyleSheet.hairlineWidth
export const atoms = {
/*
@@ -277,19 +278,19 @@ export const atoms = {
borderWidth: 0,
},
border: {
- borderWidth: 1,
+ borderWidth: hairlineWidth,
},
border_t: {
- borderTopWidth: 1,
+ borderTopWidth: hairlineWidth,
},
border_b: {
- borderBottomWidth: 1,
+ borderBottomWidth: hairlineWidth,
},
border_l: {
- borderLeftWidth: 1,
+ borderLeftWidth: hairlineWidth,
},
border_r: {
- borderRightWidth: 1,
+ borderRightWidth: hairlineWidth,
},
/*
diff --git a/src/components/AccountList.tsx b/src/components/AccountList.tsx
index 7d696801..883c06c1 100644
--- a/src/components/AccountList.tsx
+++ b/src/components/AccountList.tsx
@@ -37,7 +37,7 @@ export function AccountList({
style={[
a.rounded_md,
a.overflow_hidden,
- a.border,
+ {borderWidth: 1},
t.atoms.border_contrast_low,
]}>
{accounts.map(account => (
@@ -48,7 +48,7 @@ export function AccountList({
isCurrentAccount={account.did === currentAccount?.did}
isPendingAccount={account.did === pendingDid}
/>
-
+
))}