Skip to content

Commit

Permalink
feat(card): fix code smell
Browse files Browse the repository at this point in the history
  • Loading branch information
nidhigarg-bmw committed Mar 27, 2024
1 parent 082bac8 commit f1c02f6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/content/Cards/ContentCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

import { Box, Typography, IconButton, useTheme } from '@mui/material'
import { Box, Typography, useTheme } from '@mui/material'
import { CardChip, StatusVariants } from './CardChip'

export interface ContentCardProps {
Expand All @@ -40,21 +40,21 @@ export const ContentCard = ({
<Box
key={title}
sx={{
paddingRight: '10px',
paddingLeft: '10px',
width: '270px',
minWidth: '270px',
paddingRight: '10px',
paddingLeft: '10px',
marginBottom: '20px',
}}
>
<Box
sx={{
height: '200px',
width: 'auto',
boxSizing: 'border-box',
display: 'flex',
flexDirection: 'column',
padding: '16px 28px',
width: 'auto',
height: '200px',
background: '#FFFFFF',
border: '1px solid #DCDCDC',
borderRadius: '20px',
Expand Down

0 comments on commit f1c02f6

Please sign in to comment.