diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-11-12 17:49:14 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-12 17:49:14 +0000 |
commit | b60629aff8d95abb330f284b61181a05307479fe (patch) | |
tree | 3a038e9a91f876b78c4fc04ba493387c6d64f6f5 /src/view/com/feeds | |
parent | ae97032c41bb564f11456224db00a63a1584122a (diff) | |
download | voidsky-b60629aff8d95abb330f284b61181a05307479fe.tar.zst |
use hairline for feedlike (#6257)
Diffstat (limited to 'src/view/com/feeds')
-rw-r--r-- | src/view/com/feeds/FeedSourceCard.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/view/com/feeds/FeedSourceCard.tsx b/src/view/com/feeds/FeedSourceCard.tsx index 3276cf882..707aad7fb 100644 --- a/src/view/com/feeds/FeedSourceCard.tsx +++ b/src/view/com/feeds/FeedSourceCard.tsx @@ -162,7 +162,10 @@ export function FeedSourceCardLoaded({ style={[ pal.border, { - borderTopWidth: showMinimalPlaceholder || hideTopBorder ? 0 : 1, + borderTopWidth: + showMinimalPlaceholder || hideTopBorder + ? 0 + : StyleSheet.hairlineWidth, flexDirection: 'row', alignItems: 'center', flex: 1, |