refactor(web/progress): Rewrite progressbar component

Using chakra's built in progress component was causing weird container stretching when the progress bar would become active
This commit is contained in:
Luke
2022-04-16 13:04:22 +02:00
parent e46fa203ca
commit e00ef6cbf5
2 changed files with 33 additions and 44 deletions

View File

@@ -7,16 +7,4 @@ const config: ThemeConfig = {
export const theme = extendTheme({
config,
components: {
Progress: {
baseStyle: {
filledTrack: {
bg: 'green.400'
},
track: {
bg: 'rgba(0, 0, 0, 0.6)'
}
}
},
}
})