Use standard CSS comments to avoid lint error

This commit is contained in:
Mark Kaylor 2022-09-12 14:43:39 -04:00
parent 923d87fdbf
commit d686d4975b

View File

@ -5,13 +5,13 @@ import { Flex } from '@strapi/design-system/Flex';
import Paint from '@strapi/icons/Paint';
const IconBox = styled(Flex)`
// Hard code color values
// to stay consistent between themes
background-color: #f0f0ff; // primary100
border: 1px solid #d9d8ff; // primary200
/* Hard code color values */
/* to stay consistent between themes */
background-color: #f0f0ff; /* primary100 */
border: 1px solid #d9d8ff; /* primary200 */
svg > path {
fill: #4945ff; // primary600
fill: #4945ff; /* primary600 */
}
`;