Skip to content

Commit 58139ad

Browse files
committed
fix(InlineLoader): update starting opacity
1 parent b9b0e3b commit 58139ad

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

packages/loaders/src/styled/StyledInline.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,13 @@ import { retrieveComponentStyles, DEFAULT_THEME } from '@zendeskgarden/react-the
1111
const COMPONENT_ID = 'loaders.inline';
1212

1313
const retrieveAnimation = ({ theme }: ThemeProps<DefaultTheme>) => keyframes`
14-
0% {
15-
opacity: 1;
14+
0%, 100% {
15+
opacity: ${theme.opacity[200]};
1616
}
1717
1818
50% {
1919
opacity: ${theme.opacity[600]};
2020
}
21-
22-
100% {
23-
opacity: ${theme.opacity[200]};
24-
}
2521
`;
2622

2723
export const StyledCircle = styled.circle.attrs({

0 commit comments

Comments
 (0)