Skip to content

Commit

Permalink
Dropzone update
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrikMatiasko committed May 16, 2024
1 parent e9dfe0b commit ccdef38
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/components/Atomic/FormSelect/FormSelect.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ export const option = (theme: ThemeType) => css`

export const optionRight = css`
justify-content: flex-end;
text-align: right;
`

export const optionSelected = (theme: ThemeType) => css`
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
import { css } from '@emotion/react'
import { getTheme, ThemeType } from '../_theme'
import { fontPrimary } from '../_utils/commonStyles'
import { colors } from '../_utils/colors'

export const holder = css`
export const holder = (theme: ThemeType) => css`
height: calc(100% - 20px);
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
font-family: ${getTheme(theme, `Global.fontPrimary`, fontPrimary)};
color: ${getTheme(theme, `colorPalette.neutral500`, colors.neutral500)};
font-size: 20px;
`
2 changes: 1 addition & 1 deletion src/components/Atomic/FullPageLoader/FullPageLoader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const FullPageLoader: FC<Props> = (props) => {

return (
<>
<PageLoader loading className='auth-loader' />
<PageLoader loading noOffset className='auth-loader' />
<div css={styles.holder}>{`${i18n.loading}...`}</div>
</>
)
Expand Down

0 comments on commit ccdef38

Please sign in to comment.