diff --git a/frontend/src/components/Logs/ListLogView/styles.ts b/frontend/src/components/Logs/ListLogView/styles.ts index a73b641e59..313f5b9e0c 100644 --- a/frontend/src/components/Logs/ListLogView/styles.ts +++ b/frontend/src/components/Logs/ListLogView/styles.ts @@ -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)`