diff --git a/public/tailwind-output.css b/public/tailwind-output.css index a61fb00b..70594606 100644 --- a/public/tailwind-output.css +++ b/public/tailwind-output.css @@ -625,6 +625,14 @@ video { visibility: hidden; } +.collapse { + visibility: collapse; +} + +.static { + position: static; +} + .fixed { position: fixed; } @@ -758,6 +766,11 @@ video { margin: 2.5rem; } +.my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; +} + .mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; @@ -773,9 +786,20 @@ video { margin-bottom: 1.25rem; } -.my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; +.mt-3 { + margin-top: 0.75rem; +} + +.mb-4 { + margin-bottom: 1rem; +} + +.mb-3 { + margin-bottom: 0.75rem; +} + +.mb-5 { + margin-bottom: 1.25rem; } .mt-5 { @@ -802,10 +826,6 @@ video { margin-right: 1.25rem; } -.mb-4 { - margin-bottom: 1rem; -} - .mb-20 { margin-bottom: 5rem; } @@ -826,10 +846,6 @@ video { margin-left: 1.5rem; } -.mb-3 { - margin-bottom: 0.75rem; -} - .block { display: block; } @@ -846,10 +862,18 @@ video { display: inline-flex; } +.table { + display: table; +} + .grid { display: grid; } +.contents { + display: contents; +} + .hidden { display: none; } @@ -990,6 +1014,10 @@ video { max-width: 120rem; } +.shrink { + flex-shrink: 1; +} + .grow { flex-grow: 1; } @@ -1028,6 +1056,10 @@ video { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } +.resize { + resize: both; +} + .flex-row { flex-direction: row; } @@ -1087,6 +1119,10 @@ video { overflow: hidden; } +.rounded { + border-radius: 0.25rem; +} + .rounded-2xl { border-radius: 1rem; } @@ -1165,6 +1201,15 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); } +.via-f23-mediumGreen { + --tw-gradient-to: rgb(62 129 105 / 0); + --tw-gradient-stops: var(--tw-gradient-from), #3e8169, var(--tw-gradient-to); +} + +.to-f23-darkGreen { + --tw-gradient-to: #133d35; +} + .object-contain { object-fit: contain; } @@ -1240,6 +1285,14 @@ video { padding-bottom: 3rem; } +.pt-3 { + padding-top: 0.75rem; +} + +.pt-5 { + padding-top: 1.25rem; +} + .pt-64 { padding-top: 16rem; } @@ -1264,10 +1317,6 @@ video { padding-bottom: 1rem; } -.pl-2 { - padding-left: 0.5rem; -} - .pt-8 { padding-top: 2rem; } @@ -1300,6 +1349,10 @@ video { text-align: right; } +.align-middle { + vertical-align: middle; +} + .text-2xl { font-size: 1.5rem; line-height: 2rem; @@ -1372,6 +1425,10 @@ video { text-transform: uppercase; } +.capitalize { + text-transform: capitalize; +} + .text-red-400 { --tw-text-opacity: 1; color: rgb(248 113 113 / var(--tw-text-opacity)); @@ -1437,6 +1494,10 @@ video { box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } +.outline { + outline-style: solid; +} + .ring-1 { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -1452,6 +1513,11 @@ video { --tw-ring-opacity: 0.05; } +.filter { + -webkit-filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); +} + .transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter; transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; diff --git a/tailwind.config.js b/tailwind.config.js index 3fab3903..7f1fb954 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,7 +1,7 @@ /** @type {import('tailwindcss').Config} */ module.exports = { content: [ - "./src/components/_Landing/**/*.{js,jsx,ts,tsx}", + "./src/**/*.{js,jsx,ts,tsx}", ], theme: { extend: {