diff options
| author | Ivan Chen <ivan@tagg.id> | 2021-04-21 13:57:09 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-21 13:57:09 -0400 |
| commit | 4e8e1c0d58424e6b63cfb8470fc0a73c0e6b102b (patch) | |
| tree | 5b2dcc2daffc5b6f4fa2ae2b55c5548a12b6210c /src/components/taggs/TwitterTaggPost.tsx | |
| parent | b556f97a7eae3f9d9fce2d9c5c25f419ba77fa14 (diff) | |
| parent | f902c4938344dd25d82d7d01035476f488db2b24 (diff) | |
Merge pull request #370 from IvanIFChen/tma795-move-create-button
[TMA-795/796] Move create button
Diffstat (limited to 'src/components/taggs/TwitterTaggPost.tsx')
| -rw-r--r-- | src/components/taggs/TwitterTaggPost.tsx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/components/taggs/TwitterTaggPost.tsx b/src/components/taggs/TwitterTaggPost.tsx index 834e32ef..b2889e3e 100644 --- a/src/components/taggs/TwitterTaggPost.tsx +++ b/src/components/taggs/TwitterTaggPost.tsx @@ -1,12 +1,12 @@ import React from 'react'; -import {Image, Linking, StyleSheet, View} from 'react-native'; -import {Text} from 'react-native-animatable'; +import { Image, Linking, StyleSheet, View } from 'react-native'; +import { Text } from 'react-native-animatable'; import Hyperlink from 'react-native-hyperlink'; import LinearGradient from 'react-native-linear-gradient'; -import {AVATAR_DIM, TAGGS_GRADIENT, TAGG_LIGHT_BLUE} from '../../constants'; -import {TwitterPostType} from '../../types'; -import {handleOpenSocialUrlOnBrowser, SCREEN_WIDTH} from '../../utils'; -import {DateLabel, PostCarousel} from '../common'; +import { AVATAR_DIM, TAGGS_GRADIENT, TAGG_LIGHT_BLUE, TAGG_LIGHT_BLUE_2 } from '../../constants'; +import { TwitterPostType } from '../../types'; +import { handleOpenSocialUrlOnBrowser, SCREEN_WIDTH } from '../../utils'; +import { DateLabel, PostCarousel } from '../common'; interface TwitterTaggPostProps { ownerHandle: string; @@ -194,7 +194,7 @@ const styles = StyleSheet.create({ }, viewOnTwitterText: { fontSize: 12, - color: '#6ee7e7', + color: TAGG_LIGHT_BLUE_2, }, // reply post replyPostContainer: { |
