Fix tab spacing on mobile (#2209)

pull/2214/head
shamoon 1 year ago committed by GitHub
parent 56349e57e5
commit 241c981444
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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",

Loading…
Cancel
Save