Fix checkbox design in file manager

This commit is contained in:
Dane Everitt 2020-12-27 10:44:56 -08:00
parent 4719124fd7
commit b2328b50c6
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ const light = css<Props>`
`;
const checkboxStyle = css<Props>`
${tw`cursor-pointer appearance-none inline-block align-middle select-none flex-shrink-0 w-4 h-4 text-primary-400 border border-neutral-300 rounded-sm`};
${tw`bg-neutral-500 cursor-pointer appearance-none inline-block align-middle select-none flex-shrink-0 w-4 h-4 text-primary-400 border border-neutral-300 rounded-sm`};
color-adjust: exact;
background-origin: border-box;
transition: all 75ms linear, box-shadow 25ms linear;

View file

@ -6,7 +6,7 @@ import Input from '@/components/elements/Input';
export const FileActionCheckbox = styled(Input)`
&& {
${tw`border-neutral-500`};
${tw`border-neutral-500 bg-transparent`};
&:not(:checked) {
${tw`hover:border-neutral-300`};