diff options
author | Ivan Chen <ivan@thetaggid.com> | 2020-11-02 13:21:17 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-02 13:21:17 -0500 |
commit | 97a2d354a1cd1d3d50e456d95487614d172417f2 (patch) | |
tree | 55189194800fd706176be42a77417de99b40b9fb /src/components/onboarding/LinkSocialMedia.tsx | |
parent | aacb9237466c42b2e26f52a6588e6307c137db6e (diff) |
Hotfix new icons (#86)
* changed to use new social icons
* changed padding
* more dimension change
* removing them then will re-add them to let git update them
* icon sizes are correct now
* fixed icon size on onboarding
Diffstat (limited to 'src/components/onboarding/LinkSocialMedia.tsx')
-rw-r--r-- | src/components/onboarding/LinkSocialMedia.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/onboarding/LinkSocialMedia.tsx b/src/components/onboarding/LinkSocialMedia.tsx index 5f95fac8..03ca3a29 100644 --- a/src/components/onboarding/LinkSocialMedia.tsx +++ b/src/components/onboarding/LinkSocialMedia.tsx @@ -22,7 +22,7 @@ import { LINK_TWITTER_ENDPOINT, LINK_TWITTER_OAUTH, } from '../../constants'; -import {SOCIAL_FONT_COLORS} from '../../constants/constants'; +import {SOCIAL_FONT_COLORS, TAGG_ICON_DIM} from '../../constants/constants'; import SocialIcon from '../common/SocialIcon'; interface SocialMediaLinkerProps extends TouchableOpacityProps { @@ -192,6 +192,8 @@ const styles = StyleSheet.create({ }, icon: { top: '15%', + width: TAGG_ICON_DIM, + height: TAGG_ICON_DIM, }, label: { fontWeight: '500', |