diff --git a/src/app/page.tsx b/src/app/page.tsx index bacdfa3..217f60c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -38,10 +38,6 @@ function InitialState({
Peer-to-peer file transfers in your browser. - - Leave this tab open—FilePizza is peer to peer and never stores your - files. -
@@ -110,6 +106,9 @@ function UploadingState({ You are uploading {pluralize(uploadedFiles.length, 'file', 'files')}. + + Leave this tab open. FilePizza does not store files. + diff --git a/src/styles.css b/src/styles.css index 4a57778..926dc22 100644 --- a/src/styles.css +++ b/src/styles.css @@ -1,5 +1,11 @@ @import 'tailwindcss'; +@custom-variant dark (&:where(.dark, .dark *)); + +@theme { + --animate-spin-slow: spin 16s linear infinite; +} + html { height: 100dvh; } @@ -12,4 +18,4 @@ body { display: flex; flex-direction: column; height: 100dvh; -} \ No newline at end of file +} diff --git a/tailwind.config.js b/tailwind.config.js deleted file mode 100644 index 788f1de..0000000 --- a/tailwind.config.js +++ /dev/null @@ -1,13 +0,0 @@ -/** @type {import('tailwindcss').Config} */ -export default { - content: ['./src/**/*.{js,ts,jsx,tsx,mdx}'], - theme: { - extend: { - animation: { - 'spin-slow': 'spin 16s linear infinite', - }, - }, - }, - plugins: [], - darkMode: 'class', -}