|
const ModalHeader = styled.div` |
|
color: grey; |
|
padding: 48px 0px 8px 32px; |
|
`; |
|
const ModalProdHeader = styled.div` |
|
display: flex; |
|
justify-content: space-between; |
|
margin-left: 32px; |
|
margin-right:32px; |
|
font-weight: bold; |
|
font-size: 20px; |
|
margin-bottom: 32px; |
|
`; |
In order to keep file lengths short, consider separating styles into their own file and importing them when needed. This will reduce writing similar styles for different elements
FECapstone/Client/SRC/Components/DKProdComp/ComparisonModal.jsx
Lines 77 to 89 in 4b897c9
In order to keep file lengths short, consider separating styles into their own file and importing them when needed. This will reduce writing similar styles for different elements