source order

This commit is contained in:
Manav Rathi 2025-02-06 11:36:05 +05:30
parent d7af576b7d
commit 40edd3ecfd
No known key found for this signature in database

View File

@ -43,7 +43,8 @@ const Check = styled("input")<{ $active: boolean }>(
({ theme, $active }) => `
appearance: none;
position: absolute;
z-index: 10;
/* Increase z-index in stacking order to capture clicks */
z-index: 1;
left: 0;
outline: none;
cursor: pointer;
@ -162,7 +163,6 @@ const InSelectRangeOverlay = styled(Overlay)(
const SelectedOverlay = styled(Overlay)(
({ theme }) => `
z-index: 5;
border: 2px solid ${theme.vars.palette.accent.main};
border-radius: 4px;
`,