Skip to content

Commit

Permalink
fix: make loading placeholders transparent (#795)
Browse files Browse the repository at this point in the history
  • Loading branch information
KaiVandivier authored Mar 16, 2023
1 parent 352dfc7 commit 6e64756
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion adapter/src/components/LoadingMask.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Layer, CenteredContent, CircularLoader, layers } from '@dhis2/ui'
import React from 'react'

export const LoadingMask = () => (
<Layer translucent level={layers.alert}>
<Layer level={layers.alert}>
<CenteredContent>
<CircularLoader />
</CenteredContent>
Expand Down
2 changes: 1 addition & 1 deletion shell/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const App = () => (
<AppAdapter {...appConfig}>
<React.Suspense
fallback={
<Layer translucent level={layers.alert}>
<Layer level={layers.alert}>
<CenteredContent>
<CircularLoader />
</CenteredContent>
Expand Down

0 comments on commit 6e64756

Please sign in to comment.