Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/homepage/commit/241c9814443d5b97f00dd37c748ad5006a2e1431 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix tab spacing on mobile ()

pull/2214/head
shamoon 2 years 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
key={tab}
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
id={`${tab}-tab`}
@ -23,7 +23,7 @@ export default function Tab({ tab }) {
aria-controls={`#${tab}`}
aria-selected={activeTab === slugify(tab) ? "true" : "false"}
className={classNames(
"h-full w-full rounded-md",
"w-full rounded-md m-1",
activeTab === slugify(tab)
? "bg-theme-300/20 dark:bg-white/10"
: "hover:bg-theme-100/20 dark:hover:bg-white/5",

Loading…
Cancel
Save