Bluesky app fork with some witchin' additions 💫

fix slop (#4739)

authored by hailey.at and committed by

GitHub 56b68874 09bc4e95

+32 -19
+32 -19
src/view/com/posts/AviFollowButton.tsx
··· 90 90 hitSlop={createHitslop(3)} 91 91 style={[ 92 92 a.rounded_full, 93 - select(t.name, { 94 - light: t.atoms.bg_contrast_100, 95 - dim: t.atoms.bg_contrast_100, 96 - dark: t.atoms.bg_contrast_200, 97 - }), 98 93 a.absolute, 99 94 { 100 - bottom: -1, 101 - right: -1, 102 - borderWidth: 1, 103 - borderColor: t.atoms.bg.backgroundColor, 95 + height: 30, 96 + width: 30, 97 + bottom: -7, 98 + right: -7, 104 99 }, 105 100 ]}> 106 101 <NativeDropdown items={items}> 107 - <Plus 108 - size="sm" 109 - fill={ 110 - select(t.name, { 111 - light: t.atoms.bg_contrast_600, 112 - dim: t.atoms.bg_contrast_500, 113 - dark: t.atoms.bg_contrast_600, 114 - }).backgroundColor 115 - } 116 - /> 102 + <View 103 + style={[a.h_full, a.w_full, a.justify_center, a.align_center]}> 104 + <View 105 + style={[ 106 + a.rounded_full, 107 + a.align_center, 108 + select(t.name, { 109 + light: t.atoms.bg_contrast_100, 110 + dim: t.atoms.bg_contrast_100, 111 + dark: t.atoms.bg_contrast_200, 112 + }), 113 + { 114 + borderWidth: 1, 115 + borderColor: t.atoms.bg.backgroundColor, 116 + }, 117 + ]}> 118 + <Plus 119 + size="sm" 120 + fill={ 121 + select(t.name, { 122 + light: t.atoms.bg_contrast_600, 123 + dim: t.atoms.bg_contrast_500, 124 + dark: t.atoms.bg_contrast_600, 125 + }).backgroundColor 126 + } 127 + /> 128 + </View> 129 + </View> 117 130 </NativeDropdown> 118 131 </Button> 119 132 )}