mirror of
https://github.com/strapi/strapi.git
synced 2025-11-19 03:29:47 +00:00
fix: make ctb loader truly round (#22433)
This commit is contained in:
parent
63419c0088
commit
cb5f24c83e
@ -144,7 +144,7 @@ const Blocker = ({ displayedIcon, description, title, isOpen }: BlockerProps) =>
|
|||||||
</Flex>
|
</Flex>
|
||||||
{displayedIcon === 'reload' && (
|
{displayedIcon === 'reload' && (
|
||||||
<IconBox padding={6} background="primary100" borderColor="primary200">
|
<IconBox padding={6} background="primary100" borderColor="primary200">
|
||||||
<LoaderReload width="3.6rem" height="3.6rem" />
|
<LoaderReload width="4rem" height="4rem" />
|
||||||
</IconBox>
|
</IconBox>
|
||||||
)}
|
)}
|
||||||
{displayedIcon === 'time' && (
|
{displayedIcon === 'time' && (
|
||||||
@ -209,6 +209,9 @@ const Overlay = styled(Flex)`
|
|||||||
|
|
||||||
const IconBox = styled(Box)`
|
const IconBox = styled(Box)`
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
svg {
|
svg {
|
||||||
> path {
|
> path {
|
||||||
fill: ${({ theme }) => theme.colors.primary600} !important;
|
fill: ${({ theme }) => theme.colors.primary600} !important;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user