diff options
author | Ivan Chen <ivan@thetaggid.com> | 2021-02-06 21:22:46 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-06 21:22:46 -0500 |
commit | 09ed0b7c02a0848ea970c096b9c9007af35f1d0b (patch) | |
tree | 5041bce0d8db97b166c6f3ad56925a827fe1e021 /src/components/common | |
parent | 13b844de3a9fd4e9492cbad123b4892a7b0c4fba (diff) | |
parent | c2b3887f1f2d4766b820a79cec2ee5d167e5c67c (diff) |
Merge pull request #227 from shravyaramesh/friend-button-styling-fix
[bug fix] Friends styling - sharp to round edges
Diffstat (limited to 'src/components/common')
-rw-r--r-- | src/components/common/FriendsButton.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/common/FriendsButton.tsx b/src/components/common/FriendsButton.tsx index 6ef23a96..c7f56e2d 100644 --- a/src/components/common/FriendsButton.tsx +++ b/src/components/common/FriendsButton.tsx @@ -75,7 +75,7 @@ const styles = StyleSheet.create({ height: SCREEN_WIDTH * 0.075, borderColor: TAGG_LIGHT_BLUE, borderWidth: 2, - borderRadius: 0, + borderRadius: 3, marginRight: '2%', marginLeft: '1%', padding: 0, @@ -101,7 +101,7 @@ const styles = StyleSheet.create({ padding: 0, borderWidth: 2, borderColor: TAGG_LIGHT_BLUE, - borderRadius: 0, + borderRadius: 3, marginRight: '2%', marginLeft: '1%', backgroundColor: TAGG_LIGHT_BLUE, |