Fix display issues due to removal of quirks mode

This commit is contained in:
DaneEveritt 2022-07-03 14:44:00 -04:00
parent 0216e3fd5b
commit 15aaa2b3c3
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
6 changed files with 24 additions and 16 deletions

View file

@ -7,6 +7,6 @@ export default styled.div<{ $hoverable?: boolean }>`
${(props) => props.$hoverable !== false && tw`hover:border-neutral-500`};
& .icon {
${tw`rounded-full bg-neutral-500 p-3`};
${tw`rounded-full w-16 flex items-center justify-center bg-neutral-500 p-3`};
}
`;