mirror of
https://github.com/supabase/supabase.git
synced 2026-07-21 06:58:01 -04:00
56de26fe22
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>
17 lines
742 B
TypeScript
17 lines
742 B
TypeScript
export function LaunchWeekLogoHeader() {
|
||
return (
|
||
<div className="flex flex-col gap-1 md:gap-2 items-center justify-end">
|
||
<div className="opacity-0 animate-[fadeIn_0.5s_cubic-bezier(0.25,0.25,0,1)_0.5s_both]! px-2 flex flex-col items-center text-center gap-3">
|
||
<h1 className="sr-only font-normal uppercase text-[28px] sm:text-[32px]">Launch week 8</h1>
|
||
<p className="text-white radial-gradient-text-600 text-lg sm:text-2xl">
|
||
<span className="block">August 7th–11th, 2023</span>
|
||
</p>
|
||
<div className="text-[#9296AA]">
|
||
<p>A week of announcing new features has come to an end.</p>
|
||
<p>Thanks to everyone who participated.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
)
|
||
}
|