File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ export const Header: Component<{
69
69
70
70
return (
71
71
< header
72
- class = "p-2 flex text-sm justify-between items-center bg-brand-default text-white z-20 "
72
+ class = "p-2 flex text-sm justify-between items-center bg-brand-default text-white"
73
73
classList = { { 'md:col-span-3' : ! props . isHorizontal } }
74
74
>
75
75
< h1 class = "flex items-center space-x-4 uppercase leading-0 tracking-widest" >
@@ -80,7 +80,6 @@ export const Header: Component<{
80
80
</ h1 >
81
81
< div class = "flex items-center space-x-2" >
82
82
< Dismiss
83
- class = "z-10"
84
83
classList = { { 'absolute top-[53px] right-[10px] w-[fit-content]' : showMenu ( ) } }
85
84
menuButton = { ( ) => menuBtnEl }
86
85
open = { showMenu }
@@ -183,7 +182,7 @@ export const Header: Component<{
183
182
classList = { {
184
183
'border-white border' : showMenu ( ) ,
185
184
} }
186
- class = "z-40 px-3 py-2 focus:outline-none focus:ring-1 rounded text-white opacity-80 hover:opacity-100 visible relative md:hidden m-0 mr-[10px]"
185
+ class = "px-3 py-2 focus:outline-none focus:ring-1 rounded text-white opacity-80 hover:opacity-100 visible relative md:hidden m-0 mr-[10px]"
187
186
title = "Mobile Menu Button"
188
187
ref = { menuBtnEl }
189
188
>
Original file line number Diff line number Diff line change @@ -268,7 +268,7 @@ export const Repl: Component<ReplProps> = (props) => {
268
268
( props . ref as ( el : HTMLDivElement ) => void ) ( el ) ;
269
269
}
270
270
} }
271
- class = "relative grid bg-blueGray-50 h-full overflow-hidden text-blueGray-900 dark:text-blueGray-50 font-sans z-50 "
271
+ class = "relative grid bg-blueGray-50 h-full text-blueGray-900 dark:text-blueGray-50 font-sans"
272
272
classList = { {
273
273
'wrapper--forced' : props . isHorizontal ,
274
274
wrapper : ! props . isHorizontal ,
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import type { Component, JSX } from 'solid-js';
3
3
export const TabItem : Component < Props > = ( props ) => {
4
4
return (
5
5
< li
6
- class = { `relative z-10 inline-flex text-sm font-sans leading-snug items-center bg-blueGray-500 bg-opacity-0 hover:bg-opacity-5 overflow-hidden space-x-2 border-solid border-brand-default dark:border-gray-200 border-opacity-5 dark:border-opacity-5 border-b-2 ${
6
+ class = { `relative inline-flex text-sm font-sans leading-snug items-center bg-blueGray-500 bg-opacity-0 hover:bg-opacity-5 overflow-hidden space-x-2 border-solid border-brand-default dark:border-gray-200 border-opacity-5 dark:border-opacity-5 border-b-2 ${
7
7
props . class || ''
8
8
} `}
9
9
classList = { {
You can’t perform that action at this time.
0 commit comments