diff options
author | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-11-02 02:15:07 +0800 |
---|---|---|
committer | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-11-02 02:15:07 +0800 |
commit | f82d16a5b06a47f3ede917165ba75dfd73f48137 (patch) | |
tree | 5e040998061883f6327fd0043adbff46961e27f7 /packages/instant/src | |
parent | 9990f8720cbc04bc7a5074d6668f22af80b2a476 (diff) | |
download | dexon-sol-tools-f82d16a5b06a47f3ede917165ba75dfd73f48137.tar dexon-sol-tools-f82d16a5b06a47f3ede917165ba75dfd73f48137.tar.gz dexon-sol-tools-f82d16a5b06a47f3ede917165ba75dfd73f48137.tar.bz2 dexon-sol-tools-f82d16a5b06a47f3ede917165ba75dfd73f48137.tar.lz dexon-sol-tools-f82d16a5b06a47f3ede917165ba75dfd73f48137.tar.xz dexon-sol-tools-f82d16a5b06a47f3ede917165ba75dfd73f48137.tar.zst dexon-sol-tools-f82d16a5b06a47f3ede917165ba75dfd73f48137.zip |
Use primary color instead of black
Diffstat (limited to 'packages/instant/src')
-rw-r--r-- | packages/instant/src/components/timed_progress_bar.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/instant/src/components/timed_progress_bar.tsx b/packages/instant/src/components/timed_progress_bar.tsx index 78c7ee849..c6ba4ac19 100644 --- a/packages/instant/src/components/timed_progress_bar.tsx +++ b/packages/instant/src/components/timed_progress_bar.tsx @@ -70,7 +70,7 @@ export const TimedProgress = styled.div < TimedProgressProps > ` - background-color: black; + background-color: ${props => props.theme[ColorOption.primaryColor]}; border-radius: 6px; height: 6px; animation: ${props => expandingWidthKeyframes(props.fromWidth, props.toWidth)} |