refactor(app): migrate small styles to tailwind

This commit is contained in:
2026-07-10 18:18:44 +08:00
parent 89e0fb687a
commit 7d29dbd72f
9 changed files with 70 additions and 59 deletions
@@ -0,0 +1,10 @@
import { renderToStaticMarkup } from "react-dom/server";
import { describe, expect, it } from "vitest";
import { PwaInstallOverlay } from "../pwa-install-overlay";
describe("PwaInstallOverlay", () => {
it("does not render visible markup", () => {
expect(renderToStaticMarkup(<PwaInstallOverlay enabled />)).toBe("");
});
});