fix: remove list item transition (#3062)

This commit is contained in:
Yevhen Shevchenko 2023-07-06 19:35:55 +03:00 committed by GitHub
parent 360029f350
commit 193dca3a2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,10 +1,5 @@
import { Card, Typography } from 'antd';
import styled, { keyframes } from 'styled-components';
const fadeInAnimation = keyframes`
0% { opacity: 0; }
100% { opacity: 1;}
`;
import styled from 'styled-components';
export const Container = styled(Card)`
width: 100% !important;
@ -12,9 +7,6 @@ export const Container = styled(Card)`
.ant-card-body {
padding: 0.3rem 0.6rem;
}
animation-name: ${fadeInAnimation};
animation-duration: 0.2s;
animation-timing-function: ease-in;
`;
export const Text = styled(Typography.Text)`