|
|
@ -14,7 +14,7 @@ export default function Tab({ tab }) {
|
|
|
|
<li
|
|
|
|
<li
|
|
|
|
key={tab}
|
|
|
|
key={tab}
|
|
|
|
role="presentation"
|
|
|
|
role="presentation"
|
|
|
|
className={classNames("text-theme-700 dark:text-theme-200 relative h-8 w-full rounded-md flex m-1")}
|
|
|
|
className={classNames("text-theme-700 dark:text-theme-200 relative h-10 w-full rounded-md flex")}
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
id={`${tab}-tab`}
|
|
|
|
id={`${tab}-tab`}
|
|
|
@ -23,7 +23,7 @@ export default function Tab({ tab }) {
|
|
|
|
aria-controls={`#${tab}`}
|
|
|
|
aria-controls={`#${tab}`}
|
|
|
|
aria-selected={activeTab === slugify(tab) ? "true" : "false"}
|
|
|
|
aria-selected={activeTab === slugify(tab) ? "true" : "false"}
|
|
|
|
className={classNames(
|
|
|
|
className={classNames(
|
|
|
|
"h-full w-full rounded-md",
|
|
|
|
"w-full rounded-md m-1",
|
|
|
|
activeTab === slugify(tab)
|
|
|
|
activeTab === slugify(tab)
|
|
|
|
? "bg-theme-300/20 dark:bg-white/10"
|
|
|
|
? "bg-theme-300/20 dark:bg-white/10"
|
|
|
|
: "hover:bg-theme-100/20 dark:hover:bg-white/5",
|
|
|
|
: "hover:bg-theme-100/20 dark:hover:bg-white/5",
|
|
|
|