tangled
alpha
login
or
join now
bas.sh
/
witchsky.app
forked from
jollywhoppers.com/witchsky.app
0
fork
atom
Bluesky app fork with some witchin' additions 💫
0
fork
atom
overview
issues
pulls
pipelines
fix slop (#4739)
authored by
hailey.at
and committed by
GitHub
2 years ago
56b68874
09bc4e95
+32
-19
1 changed file
expand all
collapse all
unified
split
src
view
com
posts
AviFollowButton.tsx
+32
-19
src/view/com/posts/AviFollowButton.tsx
···
90
90
hitSlop={createHitslop(3)}
91
91
style={[
92
92
a.rounded_full,
93
93
-
select(t.name, {
94
94
-
light: t.atoms.bg_contrast_100,
95
95
-
dim: t.atoms.bg_contrast_100,
96
96
-
dark: t.atoms.bg_contrast_200,
97
97
-
}),
98
93
a.absolute,
99
94
{
100
100
-
bottom: -1,
101
101
-
right: -1,
102
102
-
borderWidth: 1,
103
103
-
borderColor: t.atoms.bg.backgroundColor,
95
95
+
height: 30,
96
96
+
width: 30,
97
97
+
bottom: -7,
98
98
+
right: -7,
104
99
},
105
100
]}>
106
101
<NativeDropdown items={items}>
107
107
-
<Plus
108
108
-
size="sm"
109
109
-
fill={
110
110
-
select(t.name, {
111
111
-
light: t.atoms.bg_contrast_600,
112
112
-
dim: t.atoms.bg_contrast_500,
113
113
-
dark: t.atoms.bg_contrast_600,
114
114
-
}).backgroundColor
115
115
-
}
116
116
-
/>
102
102
+
<View
103
103
+
style={[a.h_full, a.w_full, a.justify_center, a.align_center]}>
104
104
+
<View
105
105
+
style={[
106
106
+
a.rounded_full,
107
107
+
a.align_center,
108
108
+
select(t.name, {
109
109
+
light: t.atoms.bg_contrast_100,
110
110
+
dim: t.atoms.bg_contrast_100,
111
111
+
dark: t.atoms.bg_contrast_200,
112
112
+
}),
113
113
+
{
114
114
+
borderWidth: 1,
115
115
+
borderColor: t.atoms.bg.backgroundColor,
116
116
+
},
117
117
+
]}>
118
118
+
<Plus
119
119
+
size="sm"
120
120
+
fill={
121
121
+
select(t.name, {
122
122
+
light: t.atoms.bg_contrast_600,
123
123
+
dim: t.atoms.bg_contrast_500,
124
124
+
dark: t.atoms.bg_contrast_600,
125
125
+
}).backgroundColor
126
126
+
}
127
127
+
/>
128
128
+
</View>
129
129
+
</View>
117
130
</NativeDropdown>
118
131
</Button>
119
132
)}