Skip to content

Commit 84013f2

Browse files
authored
Merge pull request #853 from buildo/fix_checkbox_zindex
[Checkbox] fix checkbox zIndex
2 parents 9055f72 + c3eb063 commit 84013f2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/bento-design-system/src/Checkbox/Checkbox.css.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export const fieldContainer = extendedHitAreaRecipe({ axis: "y" });
66

77
export const checkboxRecipe = strictRecipe({
88
base: [
9-
{ position: "relative", zIndex: "1" },
9+
{ position: "relative" },
1010
bentoSprinkles({
1111
width: 24,
1212
height: 24,

packages/bento-design-system/src/Switch/Switch.css.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { strictRecipe } from "../util/strictRecipe";
55
import { extendedHitAreaRecipe } from "../util/extendedHitArea.css";
66

77
export const switchContainer = style([
8-
{ position: "relative", zIndex: "1" },
8+
{ position: "relative" },
99
extendedHitAreaRecipe({ axis: "y" }),
1010
]);
1111

0 commit comments

Comments
 (0)