diff --git a/assets/tailwind.css b/assets/tailwind.css index 0e8770e..7e5a955 100644 --- a/assets/tailwind.css +++ b/assets/tailwind.css @@ -723,18 +723,10 @@ video { max-width: 36rem; } -.flex-auto { - flex: 1 1 auto; -} - .flex-grow { flex-grow: 1; } -.grow { - flex-grow: 1; -} - .cursor-pointer { cursor: pointer; } @@ -747,14 +739,6 @@ video { flex-wrap: wrap; } -.content-center { - align-content: center; -} - -.items-start { - align-items: flex-start; -} - .items-center { align-items: center; } @@ -771,10 +755,6 @@ video { justify-content: space-between; } -.justify-stretch { - justify-content: stretch; -} - .gap-2 { gap: 0.5rem; } @@ -801,10 +781,6 @@ video { margin-bottom: calc(2rem * var(--tw-space-y-reverse)); } -.self-stretch { - align-self: stretch; -} - .rounded { border-radius: 0.25rem; } @@ -1071,10 +1047,6 @@ video { text-transform: uppercase; } -.italic { - font-style: italic; -} - .leading-none { line-height: 1; } diff --git a/package-lock.json b/package-lock.json index 1c1e907..fdd9554 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4,6 +4,9 @@ "requires": true, "packages": { "": { + "dependencies": { + "caniuse-lite": "^1.0.30001753" + }, "devDependencies": { "tailwindcss": "^3.4.3" } @@ -227,6 +230,26 @@ "node": ">= 6" } }, + "node_modules/caniuse-lite": { + "version": "1.0.30001753", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001753.tgz", + "integrity": "sha512-Bj5H35MD/ebaOV4iDLqPEtiliTN29qkGtEHCwawWn4cYm+bPJM2NsaP30vtZcnERClMzp52J4+aw2UNbK4o+zw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, "node_modules/chokidar": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", @@ -782,6 +805,7 @@ "url": "https://github.com/sponsors/ai" } ], + "peer": true, "dependencies": { "nanoid": "^3.3.7", "picocolors": "^1.0.0", diff --git a/package.json b/package.json index af38bdf..3a7e45b 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,8 @@ { "devDependencies": { "tailwindcss": "^3.4.3" + }, + "dependencies": { + "caniuse-lite": "^1.0.30001753" } }