aboutsummaryrefslogtreecommitdiff
path: root/src/components/common/GradientProgressBar.tsx
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-07-20 17:38:04 -0400
committerIvan Chen <ivan@tagg.id>2021-07-20 17:38:04 -0400
commit3d616c5d445919c476aa926c6d2c44db38cbab37 (patch)
tree36639ef56682fbfd5b3467514cc9a58045e143a2 /src/components/common/GradientProgressBar.tsx
parent142c84c7c45411b9badf7da3182c9e4bd0e96e38 (diff)
Move out width style
Diffstat (limited to 'src/components/common/GradientProgressBar.tsx')
-rw-r--r--src/components/common/GradientProgressBar.tsx3
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,
},