diff --git a/airbyte-webapp/src/components/ui/Switch/Switch.module.scss b/airbyte-webapp/src/components/ui/Switch/Switch.module.scss index d80cde9fe1035..8b522f92fba3a 100644 --- a/airbyte-webapp/src/components/ui/Switch/Switch.module.scss +++ b/airbyte-webapp/src/components/ui/Switch/Switch.module.scss @@ -1,6 +1,5 @@ @use "scss/colors"; @use "scss/variables"; -@use "scss/z-indices"; @mixin knob-transform($position, $size) { @if $position == left { @@ -99,7 +98,6 @@ &::before { position: absolute; - z-index: z-indices.$switchSliderBefore; content: ""; background: colors.$white; transition: variables.$transition; diff --git a/airbyte-webapp/src/scss/_z-indices.scss b/airbyte-webapp/src/scss/_z-indices.scss index 752c0b00ecb38..b33a1bf73559c 100644 --- a/airbyte-webapp/src/scss/_z-indices.scss +++ b/airbyte-webapp/src/scss/_z-indices.scss @@ -6,6 +6,5 @@ $sidebar: 9999; $schemaChangesBackdropContent: 4; $schemaChangesBackdrop: 3; $dropdownMenu: 2; -$switchSliderBefore: 1; $tableScroll: 1; $panelSplitter: 0;