fix: make ctb loader truly round (#22433)

This commit is contained in:
Lucas Boilly 2025-01-03 19:06:52 +01:00 committed by GitHub
parent 63419c0088
commit cb5f24c83e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -144,7 +144,7 @@ const Blocker = ({ displayedIcon, description, title, isOpen }: BlockerProps) =>
</Flex>
{displayedIcon === 'reload' && (
<IconBox padding={6} background="primary100" borderColor="primary200">
<LoaderReload width="3.6rem" height="3.6rem" />
<LoaderReload width="4rem" height="4rem" />
</IconBox>
)}
{displayedIcon === 'time' && (
@ -209,6 +209,9 @@ const Overlay = styled(Flex)`
const IconBox = styled(Box)`
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
svg {
> path {
fill: ${({ theme }) => theme.colors.primary600} !important;