diff options
Diffstat (limited to 'src/components/common')
-rw-r--r-- | src/components/common/GradientProgressBar.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/common/GradientProgressBar.tsx b/src/components/common/GradientProgressBar.tsx index 3483f8ac..2f7f0431 100644 --- a/src/components/common/GradientProgressBar.tsx +++ b/src/components/common/GradientProgressBar.tsx @@ -6,7 +6,7 @@ import { TAGG_LIGHT_BLUE_3, TAGG_PURPLE, } from '../../constants'; -import {normalize, SCREEN_WIDTH} from '../../utils'; +import {normalize} from '../../utils'; interface GradientProgressBarProps extends ViewProps { progress: number; @@ -30,7 +30,6 @@ const styles = StyleSheet.create({ borderRadius: 6.5, }, bar: { - width: SCREEN_WIDTH * 0.9, height: normalize(10), borderRadius: 6.5, }, |