mirror of
https://github.com/supabase/supabase.git
synced 2026-06-15 08:05:21 +08:00
This PR migrates the whole monorepo to use Tailwind v4: - Removed `@tailwindcss/container-queries` plugin since it's included by default in v4, - Bump all instances of Tailwind to v4. Made minimal changes to the shared config to remove non-supported features (`alpha` mentions), - Migrate all apps to be compatible with v4 configs, - Fix the `typography.css` import in 3 apps, - Add missing rules which were included by default in v3, - Run `pnpm dlx @tailwindcss/upgrade` on all apps, which renames a lot of classes - Rename all misnamed classes according to https://tailwindcss.com/docs/upgrade-guide#renamed-utilities in all apps. --------- Co-authored-by: Jordi Enric <jordi.err@gmail.com>
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
import { PropsWithChildren } from 'react'
|
|
import { cn } from 'ui'
|
|
|
|
import { useAppStateSnapshot } from '@/state/app-state'
|
|
|
|
interface Props {
|
|
title?: string
|
|
}
|
|
|
|
const MobileViewNav = ({ title }: PropsWithChildren<Props>) => {
|
|
const { mobileMenuOpen, setMobileMenuOpen } = useAppStateSnapshot()
|
|
|
|
return (
|
|
<nav
|
|
className={cn(
|
|
'group px-4 z-10 w-full h-10',
|
|
'border-b border-default',
|
|
'transition-width duration-200',
|
|
'flex md:hidden flex-row items-center gap-1 overflow-x-auto'
|
|
)}
|
|
>
|
|
<button
|
|
title="Menu dropdown button"
|
|
className={cn(
|
|
'group/view-toggle flex justify-center flex-col border-none space-x-0 items-start gap-1 bg-transparent! rounded-md min-w-[30px] w-[30px] h-[30px]'
|
|
)}
|
|
onClick={() => setMobileMenuOpen(!mobileMenuOpen)}
|
|
>
|
|
<div className="h-px inline-block left-0 w-4 transition-all ease-out bg-foreground-lighter group-hover/view-toggle:bg-foreground p-0 m-0" />
|
|
<div className="h-px inline-block left-0 w-3 transition-all ease-out bg-foreground-lighter group-hover/view-toggle:bg-foreground p-0 m-0" />
|
|
</button>
|
|
<div className="flex items-center">
|
|
<h4 className="text-base">{title}</h4>
|
|
</div>
|
|
</nav>
|
|
)
|
|
}
|
|
|
|
export default MobileViewNav
|