style(app): normalize tailwind utility syntax

This commit is contained in:
2026-07-13 13:17:16 +08:00
parent aff7f80206
commit b89bde1b55
37 changed files with 143 additions and 143 deletions
@@ -24,7 +24,7 @@ describe("splash Tailwind components", () => {
it("renders SplashLogo with Tailwind wrapper and image classes", () => {
const html = renderToStaticMarkup(<SplashLogo />);
expect(html).toContain("z-[2]");
expect(html).toContain("z-2");
expect(html).toContain("inline-flex");
expect(html).toContain("block h-auto w-auto");
expect(html).toContain("%2Fimages%2Fsplash%2Fic-logo-home.png");
@@ -43,7 +43,7 @@ describe("splash Tailwind components", () => {
const html = renderToStaticMarkup(<SplashContent />);
expect(html).toContain("flex flex-col gap-md");
expect(html).toContain("font-[var(--font-athelas)]");
expect(html).toContain("font-(family-name:--font-athelas)");
expect(html).toContain("whitespace-pre-line");
expect(html).toContain("Welcome to my secret hideout");
});
@@ -67,8 +67,8 @@ describe("splash Tailwind components", () => {
<SplashButton onStartChat={() => undefined} />,
);
expect(readyHtml).toContain("z-[2]");
expect(readyHtml).toContain("max-w-[480px]");
expect(readyHtml).toContain("z-2");
expect(readyHtml).toContain("max-w-120");
expect(readyHtml).toContain("bg-[linear-gradient(to_right");
expect(readyHtml).toContain("Start Chatting");
expect(loadingHtml).toContain("disabled");