Skip to content

Commit

Permalink
fix: loading overlay
Browse files Browse the repository at this point in the history
  • Loading branch information
amalcaraz committed Apr 29, 2024
1 parent 3d5fd06 commit 11825aa
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/common/SpinnerOverlay/styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const StyledSpinnerContainer = styled.div<StyledSpinnerContainerProps>`
align-items: ${$center ? 'center' : 'flex-start'};
padding-top: ${$center ? '2.5rem' : '6rem'};
z-index: 99;
transition: all ease-in-out 500ms 500ms;
transition: all ease-in-out 250ms 250ms;
background-color: ${theme.color.contentBackground}0C;
`}
`
2 changes: 1 addition & 1 deletion src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import Main from '@/components/common/Main'
import Sidebar from '@/components/common/Sidebar'
import Viewport from '@/components/common/Viewport'
import Content from '@/components/common/Content'
import Loading from './loading'
import Loading from './_loading'

export default function App({ Component, pageProps }: AppProps) {
return (
Expand Down
File renamed without changes.

0 comments on commit 11825aa

Please sign in to comment.