From 7ae6586577272fb6819f64213af10005c2d42a64 Mon Sep 17 00:00:00 2001 From: Josue Date: Wed, 10 Mar 2021 16:49:22 -0500 Subject: [PATCH] fix: use border-radius specified in the design --- striker-ui/components/AllocationBar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/striker-ui/components/AllocationBar.tsx b/striker-ui/components/AllocationBar.tsx index 15871a30..df66870d 100644 --- a/striker-ui/components/AllocationBar.tsx +++ b/striker-ui/components/AllocationBar.tsx @@ -5,13 +5,13 @@ import { PURPLE_OFF, RED_ON } from '../lib/consts/DEFAULT_THEME'; const BorderLinearProgress = withStyles({ root: { height: 10, - borderRadius: 5, + borderRadius: 3, }, colorPrimary: { backgroundColor: PURPLE_OFF, }, bar: { - borderRadius: 5, + borderRadius: 3, backgroundColor: RED_ON, }, })(LinearProgress);