refactor(web/progress): circle progress to Mantine

This commit is contained in:
Luke
2022-12-22 20:14:09 +01:00
parent f8f81db3eb
commit d1187eda43
3 changed files with 56 additions and 55 deletions

View File

@@ -28,7 +28,11 @@ const root = document.getElementById('root');
ReactDOM.createRoot(root!).render(
<React.StrictMode>
<LocaleProvider>
<MantineProvider withNormalizeCSS withGlobalStyles theme={{ colorScheme: 'dark', fontFamily: 'Roboto' }}>
<MantineProvider
withNormalizeCSS
withGlobalStyles
theme={{ colorScheme: 'dark', fontFamily: 'Roboto', shadows: { sm: '1px 1px 3px rgba(0, 0, 0, 0.5)' } }}
>
<ChakraProvider theme={theme}>
<App />
</ChakraProvider>