diff --git a/.gitignore b/.gitignore index 372592f..54f03e0 100644 --- a/.gitignore +++ b/.gitignore @@ -3,5 +3,11 @@ node_modules/ generated/prisma package-lock.json .env + +#prisma local database *.db -*.db-journal \ No newline at end of file +*.db-journal + +# exclude this very large css file, it can be +# built when needed with `npm run build:tailwind` +src/client/public/css/tailwind.css \ No newline at end of file diff --git a/src/client/public/css/tailwind.css b/src/client/public/css/tailwind.css deleted file mode 100644 index f558bb2..0000000 --- a/src/client/public/css/tailwind.css +++ /dev/null @@ -1,1493 +0,0 @@ -/*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */ -@layer properties; -@layer theme, base, components, utilities; -@layer theme { - :root, :host { - --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", - "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", - "Courier New", monospace; - --color-red-600: oklch(57.7% 0.245 27.325); - --color-green-600: oklch(62.7% 0.194 149.214); - --color-blue-500: oklch(62.3% 0.214 259.815); - --color-blue-600: oklch(54.6% 0.245 262.881); - --color-blue-700: oklch(48.8% 0.243 264.376); - --color-gray-100: oklch(96.7% 0.003 264.542); - --color-gray-200: oklch(92.8% 0.006 264.531); - --color-gray-300: oklch(87.2% 0.01 258.338); - --color-gray-400: oklch(70.7% 0.022 261.325); - --color-gray-500: oklch(55.1% 0.027 264.364); - --color-gray-600: oklch(44.6% 0.03 256.802); - --color-gray-700: oklch(37.3% 0.034 259.733); - --color-gray-800: oklch(27.8% 0.033 256.848); - --color-gray-900: oklch(21% 0.034 264.665); - --color-neutral-100: oklch(97% 0 0); - --color-neutral-200: oklch(92.2% 0 0); - --color-neutral-300: oklch(87% 0 0); - --color-neutral-400: oklch(70.8% 0 0); - --color-neutral-500: oklch(55.6% 0 0); - --color-neutral-600: oklch(43.9% 0 0); - --color-neutral-700: oklch(37.1% 0 0); - --color-neutral-800: oklch(26.9% 0 0); - --color-neutral-900: oklch(20.5% 0 0); - --color-black: #000; - --color-white: #fff; - --spacing: 0.25rem; - --text-xs: 0.75rem; - --text-xs--line-height: calc(1 / 0.75); - --text-sm: 0.875rem; - --text-sm--line-height: calc(1.25 / 0.875); - --text-base: 1rem; - --text-base--line-height: calc(1.5 / 1); - --text-xl: 1.25rem; - --text-xl--line-height: calc(1.75 / 1.25); - --text-4xl: 2.25rem; - --text-4xl--line-height: calc(2.5 / 2.25); - --font-weight-medium: 500; - --font-weight-semibold: 600; - --radius-sm: 0.25rem; - --radius-md: 0.375rem; - --radius-lg: 0.5rem; - --radius-xl: 0.75rem; - --ease-in: cubic-bezier(0.4, 0, 1, 1); - --animate-spin: spin 1s linear infinite; - --default-transition-duration: 150ms; - --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - --default-font-family: var(--font-sans); - --default-mono-font-family: var(--font-mono); - } -} -@layer base { - *, ::after, ::before, ::backdrop, ::file-selector-button { - box-sizing: border-box; - margin: 0; - padding: 0; - border: 0 solid; - } - html, :host { - line-height: 1.5; - -webkit-text-size-adjust: 100%; - tab-size: 4; - font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"); - font-feature-settings: var(--default-font-feature-settings, normal); - font-variation-settings: var(--default-font-variation-settings, normal); - -webkit-tap-highlight-color: transparent; - } - hr { - height: 0; - color: inherit; - border-top-width: 1px; - } - abbr:where([title]) { - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; - } - h1, h2, h3, h4, h5, h6 { - font-size: inherit; - font-weight: inherit; - } - a { - color: inherit; - -webkit-text-decoration: inherit; - text-decoration: inherit; - } - b, strong { - font-weight: bolder; - } - code, kbd, samp, pre { - font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace); - font-feature-settings: var(--default-mono-font-feature-settings, normal); - font-variation-settings: var(--default-mono-font-variation-settings, normal); - font-size: 1em; - } - small { - font-size: 80%; - } - sub, sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; - } - sub { - bottom: -0.25em; - } - sup { - top: -0.5em; - } - table { - text-indent: 0; - border-color: inherit; - border-collapse: collapse; - } - :-moz-focusring { - outline: auto; - } - progress { - vertical-align: baseline; - } - summary { - display: list-item; - } - ol, ul, menu { - list-style: none; - } - img, svg, video, canvas, audio, iframe, embed, object { - display: block; - vertical-align: middle; - } - img, video { - max-width: 100%; - height: auto; - } - button, input, select, optgroup, textarea, ::file-selector-button { - font: inherit; - font-feature-settings: inherit; - font-variation-settings: inherit; - letter-spacing: inherit; - color: inherit; - border-radius: 0; - background-color: transparent; - opacity: 1; - } - :where(select:is([multiple], [size])) optgroup { - font-weight: bolder; - } - :where(select:is([multiple], [size])) optgroup option { - padding-inline-start: 20px; - } - ::file-selector-button { - margin-inline-end: 4px; - } - ::placeholder { - opacity: 1; - } - @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) { - ::placeholder { - color: currentcolor; - @supports (color: color-mix(in lab, red, red)) { - color: color-mix(in oklab, currentcolor 50%, transparent); - } - } - } - textarea { - resize: vertical; - } - ::-webkit-search-decoration { - -webkit-appearance: none; - } - ::-webkit-date-and-time-value { - min-height: 1lh; - text-align: inherit; - } - ::-webkit-datetime-edit { - display: inline-flex; - } - ::-webkit-datetime-edit-fields-wrapper { - padding: 0; - } - ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field { - padding-block: 0; - } - :-moz-ui-invalid { - box-shadow: none; - } - button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button { - appearance: button; - } - ::-webkit-inner-spin-button, ::-webkit-outer-spin-button { - height: auto; - } - [hidden]:where(:not([hidden="until-found"])) { - display: none !important; - } -} -@layer utilities { - .collapse { - visibility: collapse; - } - .invisible { - visibility: hidden; - } - .visible { - visibility: visible; - } - .sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; - } - .absolute { - position: absolute; - } - .fixed { - position: fixed; - } - .relative { - position: relative; - } - .static { - position: static; - } - .sticky { - position: sticky; - } - .inset-0 { - inset: calc(var(--spacing) * 0); - } - .inset-x-0 { - inset-inline: calc(var(--spacing) * 0); - } - .start-0 { - inset-inline-start: calc(var(--spacing) * 0); - } - .start-2 { - inset-inline-start: calc(var(--spacing) * 2); - } - .end-2 { - inset-inline-end: calc(var(--spacing) * 2); - } - .top-0 { - top: calc(var(--spacing) * 0); - } - .top-1\/2 { - top: calc(1/2 * 100%); - } - .top-2 { - top: calc(var(--spacing) * 2); - } - .top-full { - top: 100%; - } - .bottom-0 { - bottom: calc(var(--spacing) * 0); - } - .bottom-full { - bottom: 100%; - } - .z-20 { - z-index: 20; - } - .z-50 { - z-index: 50; - } - .z-60 { - z-index: 60; - } - .col-span-1 { - grid-column: span 1 / span 1; - } - .col-span-3 { - grid-column: span 3 / span 3; - } - .container { - width: 100%; - @media (width >= 40rem) { - max-width: 40rem; - } - @media (width >= 48rem) { - max-width: 48rem; - } - @media (width >= 64rem) { - max-width: 64rem; - } - @media (width >= 80rem) { - max-width: 80rem; - } - @media (width >= 96rem) { - max-width: 96rem; - } - } - .mx-1\.5 { - margin-inline: calc(var(--spacing) * 1.5); - } - .mx-4 { - margin-inline: calc(var(--spacing) * 4); - } - .my-2 { - margin-block: calc(var(--spacing) * 2); - } - .\!ms-auto { - margin-inline-start: auto !important; - } - .ms-0\.5 { - margin-inline-start: calc(var(--spacing) * 0.5); - } - .ms-2 { - margin-inline-start: calc(var(--spacing) * 2); - } - .\!me-1\.5 { - margin-inline-end: calc(var(--spacing) * 1.5) !important; - } - .mt-2 { - margin-top: calc(var(--spacing) * 2); - } - .mb-1 { - margin-bottom: calc(var(--spacing) * 1); - } - .mb-2 { - margin-bottom: calc(var(--spacing) * 2); - } - .ml-auto { - margin-left: auto; - } - .\!flex { - display: flex !important; - } - .block { - display: block; - } - .contents { - display: contents; - } - .flex { - display: flex; - } - .grid { - display: grid; - } - .hidden { - display: none; - } - .inline { - display: inline; - } - .inline-block { - display: inline-block; - } - .inline-flex { - display: inline-flex; - } - .table { - display: table; - } - .size-3 { - width: calc(var(--spacing) * 3); - height: calc(var(--spacing) * 3); - } - .size-3\.5 { - width: calc(var(--spacing) * 3.5); - height: calc(var(--spacing) * 3.5); - } - .size-4 { - width: calc(var(--spacing) * 4); - height: calc(var(--spacing) * 4); - } - .size-5 { - width: calc(var(--spacing) * 5); - height: calc(var(--spacing) * 5); - } - .size-6 { - width: calc(var(--spacing) * 6); - height: calc(var(--spacing) * 6); - } - .size-8 { - width: calc(var(--spacing) * 8); - height: calc(var(--spacing) * 8); - } - .size-\[28px\] { - width: 28px; - height: 28px; - } - .\!h-2\.5 { - height: calc(var(--spacing) * 2.5) !important; - } - .h-2 { - height: calc(var(--spacing) * 2); - } - .h-full { - height: 100%; - } - .max-h-60 { - max-height: calc(var(--spacing) * 60); - } - .max-h-72 { - max-height: calc(var(--spacing) * 72); - } - .max-h-full { - max-height: 100%; - } - .\!w-2\.5 { - width: calc(var(--spacing) * 2.5) !important; - } - .w-10 { - width: calc(var(--spacing) * 10); - } - .w-20 { - width: calc(var(--spacing) * 20); - } - .w-32 { - width: calc(var(--spacing) * 32); - } - .w-64 { - width: calc(var(--spacing) * 64); - } - .w-\[calc\(100\%-32px\)\] { - width: calc(100% - 32px); - } - .w-full { - width: 100%; - } - .max-w-75 { - max-width: calc(var(--spacing) * 75); - } - .max-w-full { - max-width: 100%; - } - .min-w-24 { - min-width: calc(var(--spacing) * 24); - } - .flex-none { - flex: none; - } - .shrink-0 { - flex-shrink: 0; - } - .-translate-x-full { - --tw-translate-x: -100%; - translate: var(--tw-translate-x) var(--tw-translate-y); - } - .-translate-y-1\/2 { - --tw-translate-y: calc(calc(1/2 * 100%) * -1); - translate: var(--tw-translate-x) var(--tw-translate-y); - } - .transform { - transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,); - } - .animate-spin { - animation: var(--animate-spin); - } - .cursor-pointer { - cursor: pointer; - } - .resize { - resize: both; - } - .grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)); - } - .flex-col { - flex-direction: column; - } - .flex-nowrap { - flex-wrap: nowrap; - } - .flex-wrap { - flex-wrap: wrap; - } - .items-center { - align-items: center; - } - .\!justify-between { - justify-content: space-between !important; - } - .justify-between { - justify-content: space-between; - } - .justify-center { - justify-content: center; - } - .justify-end { - justify-content: flex-end; - } - .space-y-0\.5 { - :where(& > :not(:last-child)) { - --tw-space-y-reverse: 0; - margin-block-start: calc(calc(var(--spacing) * 0.5) * var(--tw-space-y-reverse)); - margin-block-end: calc(calc(var(--spacing) * 0.5) * calc(1 - var(--tw-space-y-reverse))); - } - } - .space-y-1 { - :where(& > :not(:last-child)) { - --tw-space-y-reverse: 0; - margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse)); - margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse))); - } - } - .space-y-4 { - :where(& > :not(:last-child)) { - --tw-space-y-reverse: 0; - margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse)); - margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse))); - } - } - .gap-x-1 { - column-gap: calc(var(--spacing) * 1); - } - .gap-x-2 { - column-gap: calc(var(--spacing) * 2); - } - .gap-x-3 { - column-gap: calc(var(--spacing) * 3); - } - .self-center { - align-self: center; - } - .truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - .overflow-hidden { - overflow: hidden; - } - .overflow-x-auto { - overflow-x: auto; - } - .overflow-y-auto { - overflow-y: auto; - } - .\!rounded-sm { - border-radius: var(--radius-sm) !important; - } - .rounded-full { - border-radius: calc(infinity * 1px); - } - .rounded-lg { - border-radius: var(--radius-lg); - } - .rounded-md { - border-radius: var(--radius-md); - } - .rounded-sm { - border-radius: var(--radius-sm); - } - .rounded-xl { - border-radius: var(--radius-xl); - } - .rounded-t-lg { - border-top-left-radius: var(--radius-lg); - border-top-right-radius: var(--radius-lg); - } - .border { - border-style: var(--tw-border-style); - border-width: 1px; - } - .border-3 { - border-style: var(--tw-border-style); - border-width: 3px; - } - .border-e { - border-inline-end-style: var(--tw-border-style); - border-inline-end-width: 1px; - } - .border-b { - border-bottom-style: var(--tw-border-style); - border-bottom-width: 1px; - } - .border-solid { - --tw-border-style: solid; - border-style: solid; - } - .\!border-gray-200 { - border-color: var(--color-gray-200) !important; - } - .border-current { - border-color: currentcolor; - } - .border-gray-200 { - border-color: var(--color-gray-200); - } - .border-gray-300 { - border-color: var(--color-gray-300); - } - .border-transparent { - border-color: transparent; - } - .border-t-transparent { - border-top-color: transparent; - } - .\!bg-white { - background-color: var(--color-white) !important; - } - .bg-blue-600 { - background-color: var(--color-blue-600); - } - .bg-gray-200 { - background-color: var(--color-gray-200); - } - .bg-gray-900\/50 { - background-color: color-mix(in srgb, oklch(21% 0.034 264.665) 50%, transparent); - @supports (color: color-mix(in lab, red, red)) { - background-color: color-mix(in oklab, var(--color-gray-900) 50%, transparent); - } - } - .bg-neutral-100 { - background-color: var(--color-neutral-100); - } - .bg-white { - background-color: var(--color-white); - } - .fill-black { - fill: var(--color-black); - } - .p-1 { - padding: calc(var(--spacing) * 1); - } - .p-2 { - padding: calc(var(--spacing) * 2); - } - .p-3 { - padding: calc(var(--spacing) * 3); - } - .p-4 { - padding: calc(var(--spacing) * 4); - } - .px-2 { - padding-inline: calc(var(--spacing) * 2); - } - .px-3 { - padding-inline: calc(var(--spacing) * 3); - } - .px-4 { - padding-inline: calc(var(--spacing) * 4); - } - .px-6 { - padding-inline: calc(var(--spacing) * 6); - } - .\!py-0\.5 { - padding-block: calc(var(--spacing) * 0.5) !important; - } - .py-1 { - padding-block: calc(var(--spacing) * 1); - } - .py-2 { - padding-block: calc(var(--spacing) * 2); - } - .py-6 { - padding-block: calc(var(--spacing) * 6); - } - .pe-6 { - padding-inline-end: calc(var(--spacing) * 6); - } - .pt-3 { - padding-top: calc(var(--spacing) * 3); - } - .pt-4 { - padding-top: calc(var(--spacing) * 4); - } - .pb-3 { - padding-bottom: calc(var(--spacing) * 3); - } - .text-center { - text-align: center; - } - .text-end { - text-align: end; - } - .text-start { - text-align: start; - } - .align-bottom { - vertical-align: bottom; - } - .font-\[Inter\] { - font-family: Inter; - } - .\!text-sm { - font-size: var(--text-sm) !important; - line-height: var(--tw-leading, var(--text-sm--line-height)) !important; - } - .text-4xl { - font-size: var(--text-4xl); - line-height: var(--tw-leading, var(--text-4xl--line-height)); - } - .text-base { - font-size: var(--text-base); - line-height: var(--tw-leading, var(--text-base--line-height)); - } - .text-sm { - font-size: var(--text-sm); - line-height: var(--tw-leading, var(--text-sm--line-height)); - } - .text-xl { - font-size: var(--text-xl); - line-height: var(--tw-leading, var(--text-xl--line-height)); - } - .text-xs { - font-size: var(--text-xs); - line-height: var(--tw-leading, var(--text-xs--line-height)); - } - .\!font-medium { - --tw-font-weight: var(--font-weight-medium) !important; - font-weight: var(--font-weight-medium) !important; - } - .font-medium { - --tw-font-weight: var(--font-weight-medium); - font-weight: var(--font-weight-medium); - } - .font-semibold { - --tw-font-weight: var(--font-weight-semibold); - font-weight: var(--font-weight-semibold); - } - .text-nowrap { - text-wrap: nowrap; - } - .whitespace-nowrap { - white-space: nowrap; - } - .text-blue-600 { - color: var(--color-blue-600); - } - .text-gray-500 { - color: var(--color-gray-500); - } - .text-gray-600 { - color: var(--color-gray-600); - } - .text-gray-800 { - color: var(--color-gray-800); - } - .text-green-600 { - color: var(--color-green-600); - } - .text-red-600 { - color: var(--color-red-600); - } - .text-white { - color: var(--color-white); - } - .lowercase { - text-transform: lowercase; - } - .uppercase { - text-transform: uppercase; - } - .opacity-0 { - opacity: 0%; - } - .shadow-lg { - --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - .shadow-md { - --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - .outline { - outline-style: var(--tw-outline-style); - outline-width: 1px; - } - .blur { - --tw-blur: blur(8px); - 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 { - 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\! { - 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,) !important; - } - .transition { - transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - .transition-all { - transition-property: all; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - .duration-200 { - --tw-duration: 200ms; - transition-duration: 200ms; - } - .duration-500 { - --tw-duration: 500ms; - transition-duration: 500ms; - } - .ease-in { - --tw-ease: var(--ease-in); - transition-timing-function: var(--ease-in); - } - .\[--auto-close\:lg\] { - --auto-close: lg; - } - .before\:absolute { - &::before { - content: var(--tw-content); - position: absolute; - } - } - .before\:inset-0 { - &::before { - content: var(--tw-content); - inset: calc(var(--spacing) * 0); - } - } - .before\:z-1 { - &::before { - content: var(--tw-content); - z-index: 1; - } - } - .hover\:bg-blue-700 { - &:hover { - @media (hover: hover) { - background-color: var(--color-blue-700); - } - } - } - .hover\:bg-gray-100 { - &:hover { - @media (hover: hover) { - background-color: var(--color-gray-100); - } - } - } - .hover\:text-gray-600 { - &:hover { - @media (hover: hover) { - color: var(--color-gray-600); - } - } - } - .hover\:text-gray-800 { - &:hover { - @media (hover: hover) { - color: var(--color-gray-800); - } - } - } - .focus\:border-blue-500 { - &:focus { - border-color: var(--color-blue-500); - } - } - .focus\:bg-gray-100 { - &:focus { - background-color: var(--color-gray-100); - } - } - .focus\:text-gray-600 { - &:focus { - color: var(--color-gray-600); - } - } - .focus\:opacity-80 { - &:focus { - opacity: 80%; - } - } - .focus\:ring-blue-500 { - &:focus { - --tw-ring-color: var(--color-blue-500); - } - } - .focus\:outline-hidden { - &:focus { - --tw-outline-style: none; - outline-style: none; - @media (forced-colors: active) { - outline: 2px solid transparent; - outline-offset: 2px; - } - } - } - .disabled\:pointer-events-none { - &:disabled { - pointer-events: none; - } - } - .disabled\:opacity-50 { - &:disabled { - opacity: 50%; - } - } - .sm\:flex { - @media (width >= 40rem) { - display: flex; - } - } - .sm\:space-y-6 { - @media (width >= 40rem) { - :where(& > :not(:last-child)) { - --tw-space-y-reverse: 0; - margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse)); - margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse))); - } - } - } - .sm\:p-6 { - @media (width >= 40rem) { - padding: calc(var(--spacing) * 6); - } - } - .sm\:px-6 { - @media (width >= 40rem) { - padding-inline: calc(var(--spacing) * 6); - } - } - .lg\:end-auto { - @media (width >= 64rem) { - inset-inline-end: auto; - } - } - .lg\:bottom-0 { - @media (width >= 64rem) { - bottom: calc(var(--spacing) * 0); - } - } - .lg\:block { - @media (width >= 64rem) { - display: block; - } - } - .lg\:hidden { - @media (width >= 64rem) { - display: none; - } - } - .lg\:translate-x-0 { - @media (width >= 64rem) { - --tw-translate-x: calc(var(--spacing) * 0); - translate: var(--tw-translate-x) var(--tw-translate-y); - } - } - .lg\:ps-64 { - @media (width >= 64rem) { - padding-inline-start: calc(var(--spacing) * 64); - } - } - .dark\:\!border-neutral-700 { - &:where(.dark, .dark *) { - border-color: var(--color-neutral-700) !important; - } - } - .dark\:border-neutral-600 { - &:where(.dark, .dark *) { - border-color: var(--color-neutral-600); - } - } - .dark\:border-neutral-700 { - &:where(.dark, .dark *) { - border-color: var(--color-neutral-700); - } - } - .dark\:\!bg-neutral-800 { - &:where(.dark, .dark *) { - background-color: var(--color-neutral-800) !important; - } - } - .dark\:bg-blue-500 { - &:where(.dark, .dark *) { - background-color: var(--color-blue-500); - } - } - .dark\:bg-neutral-700 { - &:where(.dark, .dark *) { - background-color: var(--color-neutral-700); - } - } - .dark\:bg-neutral-800 { - &:where(.dark, .dark *) { - background-color: var(--color-neutral-800); - } - } - .dark\:bg-neutral-900 { - &:where(.dark, .dark *) { - background-color: var(--color-neutral-900); - } - } - .dark\:bg-neutral-900\/80 { - &:where(.dark, .dark *) { - background-color: color-mix(in srgb, oklch(20.5% 0 0) 80%, transparent); - @supports (color: color-mix(in lab, red, red)) { - background-color: color-mix(in oklab, var(--color-neutral-900) 80%, transparent); - } - } - } - .dark\:fill-neutral-200 { - &:where(.dark, .dark *) { - fill: var(--color-neutral-200); - } - } - .dark\:text-blue-500 { - &:where(.dark, .dark *) { - color: var(--color-blue-500); - } - } - .dark\:text-gray-400 { - &:where(.dark, .dark *) { - color: var(--color-gray-400); - } - } - .dark\:text-neutral-200 { - &:where(.dark, .dark *) { - color: var(--color-neutral-200); - } - } - .dark\:text-neutral-400 { - &:where(.dark, .dark *) { - color: var(--color-neutral-400); - } - } - .dark\:text-neutral-500 { - &:where(.dark, .dark *) { - color: var(--color-neutral-500); - } - } - .dark\:text-white { - &:where(.dark, .dark *) { - color: var(--color-white); - } - } - .dark\:hover\:bg-neutral-800 { - &:where(.dark, .dark *) { - &:hover { - @media (hover: hover) { - background-color: var(--color-neutral-800); - } - } - } - } - .dark\:hover\:text-neutral-200 { - &:where(.dark, .dark *) { - &:hover { - @media (hover: hover) { - color: var(--color-neutral-200); - } - } - } - } - .dark\:hover\:text-neutral-300 { - &:where(.dark, .dark *) { - &:hover { - @media (hover: hover) { - color: var(--color-neutral-300); - } - } - } - } - .dark\:focus\:bg-neutral-800 { - &:where(.dark, .dark *) { - &:focus { - background-color: var(--color-neutral-800); - } - } - } - .dark\:focus\:text-neutral-300 { - &:where(.dark, .dark *) { - &:focus { - color: var(--color-neutral-300); - } - } - } - .hs-overlay-open\:\!translate-x-0 { - &.open { - --tw-translate-x: calc(var(--spacing) * 0) !important; - translate: var(--tw-translate-x) var(--tw-translate-y) !important; - } - .open & { - --tw-translate-x: calc(var(--spacing) * 0) !important; - translate: var(--tw-translate-x) var(--tw-translate-y) !important; - } - } - .hs-selected\:block { - &.selected { - display: block; - } - .selected & { - display: block; - } - } - .hs-selected\:bg-gray-100 { - &.selected { - background-color: var(--color-gray-100); - } - .selected & { - background-color: var(--color-gray-100); - } - } - .dark\:hs-selected\:bg-gray-700 { - &:where(.dark, .dark *) { - &.selected { - background-color: var(--color-gray-700); - } - .selected & { - background-color: var(--color-gray-700); - } - } - } - .dark\:hs-selected\:bg-neutral-800 { - &:where(.dark, .dark *) { - &.selected { - background-color: var(--color-neutral-800); - } - .selected & { - background-color: var(--color-neutral-800); - } - } - } - .hs-select-disabled\:pointer-events-none { - &.disabled { - pointer-events: none; - } - .disabled & { - pointer-events: none; - } - } - .hs-select-disabled\:opacity-50 { - &.disabled { - opacity: 50%; - } - .disabled & { - opacity: 50%; - } - } - .hs-combo-box-selected\:block { - &.selected { - display: block; - } - .selected & { - display: block; - } - } - .hs-file-upload-complete\:bg-green-600 { - &.complete { - background-color: var(--color-green-600); - } - .complete & { - background-color: var(--color-green-600); - } - } - .\[\&\:\:-webkit-scrollbar\]\:w-2 { - &::-webkit-scrollbar { - width: calc(var(--spacing) * 2); - } - } - .\[\&\:\:-webkit-scrollbar-thumb\]\:rounded-full { - &::-webkit-scrollbar-thumb { - border-radius: calc(infinity * 1px); - } - } - .\[\&\:\:-webkit-scrollbar-thumb\]\:bg-gray-300 { - &::-webkit-scrollbar-thumb { - background-color: var(--color-gray-300); - } - } - .dark\:\[\&\:\:-webkit-scrollbar-thumb\]\:bg-neutral-500 { - &:where(.dark, .dark *) { - &::-webkit-scrollbar-thumb { - background-color: var(--color-neutral-500); - } - } - } - .\[\&\:\:-webkit-scrollbar-track\]\:bg-gray-100 { - &::-webkit-scrollbar-track { - background-color: var(--color-gray-100); - } - } - .dark\:\[\&\:\:-webkit-scrollbar-track\]\:bg-neutral-700 { - &:where(.dark, .dark *) { - &::-webkit-scrollbar-track { - background-color: var(--color-neutral-700); - } - } - } -} -@layer base { - *, ::after, ::before, ::backdrop, ::file-selector-button { - border-color: var(--color-gray-200, currentColor); - } -} -@font-face { - font-family: "Inter"; - font-style: normal; - font-weight: 200, 700; - font-display: swap; - src: url("/static/fonts/inter-variablefont.ttf"); -} -.dt-layout-row:has(.dt-search), .dt-layout-row:has(.dt-length), .dt-layout-row:has(.dt-paging) { - display: none !important; -} -.sidebar-btn { - display: flex; - width: 100%; - align-items: center; - column-gap: calc(var(--spacing) * 3.5); - border-radius: var(--radius-lg); - padding-inline: calc(var(--spacing) * 2.5); - padding-block: calc(var(--spacing) * 2); - font-size: var(--text-sm); - line-height: var(--tw-leading, var(--text-sm--line-height)); - color: var(--color-gray-800); - &:hover { - @media (hover: hover) { - background-color: var(--color-gray-100); - } - } - &:focus { - background-color: var(--color-gray-100); - } - &:focus { - --tw-outline-style: none; - outline-style: none; - @media (forced-colors: active) { - outline: 2px solid transparent; - outline-offset: 2px; - } - } - &:where(.dark, .dark *) { - background-color: var(--color-neutral-800); - } - &:where(.dark, .dark *) { - color: var(--color-neutral-200); - } - &:where(.dark, .dark *) { - &:hover { - @media (hover: hover) { - background-color: var(--color-neutral-700); - } - } - } - &:where(.dark, .dark *) { - &:focus { - background-color: var(--color-neutral-700); - } - } -} -@property --tw-translate-x { - syntax: "*"; - inherits: false; - initial-value: 0; -} -@property --tw-translate-y { - syntax: "*"; - inherits: false; - initial-value: 0; -} -@property --tw-translate-z { - syntax: "*"; - inherits: false; - initial-value: 0; -} -@property --tw-rotate-x { - syntax: "*"; - inherits: false; -} -@property --tw-rotate-y { - syntax: "*"; - inherits: false; -} -@property --tw-rotate-z { - syntax: "*"; - inherits: false; -} -@property --tw-skew-x { - syntax: "*"; - inherits: false; -} -@property --tw-skew-y { - syntax: "*"; - inherits: false; -} -@property --tw-space-y-reverse { - syntax: "*"; - inherits: false; - initial-value: 0; -} -@property --tw-border-style { - syntax: "*"; - inherits: false; - initial-value: solid; -} -@property --tw-font-weight { - syntax: "*"; - inherits: false; -} -@property --tw-shadow { - syntax: "*"; - inherits: false; - initial-value: 0 0 #0000; -} -@property --tw-shadow-color { - syntax: "*"; - inherits: false; -} -@property --tw-shadow-alpha { - syntax: ""; - inherits: false; - initial-value: 100%; -} -@property --tw-inset-shadow { - syntax: "*"; - inherits: false; - initial-value: 0 0 #0000; -} -@property --tw-inset-shadow-color { - syntax: "*"; - inherits: false; -} -@property --tw-inset-shadow-alpha { - syntax: ""; - inherits: false; - initial-value: 100%; -} -@property --tw-ring-color { - syntax: "*"; - inherits: false; -} -@property --tw-ring-shadow { - syntax: "*"; - inherits: false; - initial-value: 0 0 #0000; -} -@property --tw-inset-ring-color { - syntax: "*"; - inherits: false; -} -@property --tw-inset-ring-shadow { - syntax: "*"; - inherits: false; - initial-value: 0 0 #0000; -} -@property --tw-ring-inset { - syntax: "*"; - inherits: false; -} -@property --tw-ring-offset-width { - syntax: ""; - inherits: false; - initial-value: 0px; -} -@property --tw-ring-offset-color { - syntax: "*"; - inherits: false; - initial-value: #fff; -} -@property --tw-ring-offset-shadow { - syntax: "*"; - inherits: false; - initial-value: 0 0 #0000; -} -@property --tw-outline-style { - syntax: "*"; - inherits: false; - initial-value: solid; -} -@property --tw-blur { - syntax: "*"; - inherits: false; -} -@property --tw-brightness { - syntax: "*"; - inherits: false; -} -@property --tw-contrast { - syntax: "*"; - inherits: false; -} -@property --tw-grayscale { - syntax: "*"; - inherits: false; -} -@property --tw-hue-rotate { - syntax: "*"; - inherits: false; -} -@property --tw-invert { - syntax: "*"; - inherits: false; -} -@property --tw-opacity { - syntax: "*"; - inherits: false; -} -@property --tw-saturate { - syntax: "*"; - inherits: false; -} -@property --tw-sepia { - syntax: "*"; - inherits: false; -} -@property --tw-drop-shadow { - syntax: "*"; - inherits: false; -} -@property --tw-drop-shadow-color { - syntax: "*"; - inherits: false; -} -@property --tw-drop-shadow-alpha { - syntax: ""; - inherits: false; - initial-value: 100%; -} -@property --tw-drop-shadow-size { - syntax: "*"; - inherits: false; -} -@property --tw-duration { - syntax: "*"; - inherits: false; -} -@property --tw-ease { - syntax: "*"; - inherits: false; -} -@property --tw-content { - syntax: "*"; - initial-value: ""; - inherits: false; -} -@keyframes spin { - to { - transform: rotate(360deg); - } -} -@layer properties { - @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) { - *, ::before, ::after, ::backdrop { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-translate-z: 0; - --tw-rotate-x: initial; - --tw-rotate-y: initial; - --tw-rotate-z: initial; - --tw-skew-x: initial; - --tw-skew-y: initial; - --tw-space-y-reverse: 0; - --tw-border-style: solid; - --tw-font-weight: initial; - --tw-shadow: 0 0 #0000; - --tw-shadow-color: initial; - --tw-shadow-alpha: 100%; - --tw-inset-shadow: 0 0 #0000; - --tw-inset-shadow-color: initial; - --tw-inset-shadow-alpha: 100%; - --tw-ring-color: initial; - --tw-ring-shadow: 0 0 #0000; - --tw-inset-ring-color: initial; - --tw-inset-ring-shadow: 0 0 #0000; - --tw-ring-inset: initial; - --tw-ring-offset-width: 0px; - --tw-ring-offset-color: #fff; - --tw-ring-offset-shadow: 0 0 #0000; - --tw-outline-style: solid; - --tw-blur: initial; - --tw-brightness: initial; - --tw-contrast: initial; - --tw-grayscale: initial; - --tw-hue-rotate: initial; - --tw-invert: initial; - --tw-opacity: initial; - --tw-saturate: initial; - --tw-sepia: initial; - --tw-drop-shadow: initial; - --tw-drop-shadow-color: initial; - --tw-drop-shadow-alpha: 100%; - --tw-drop-shadow-size: initial; - --tw-duration: initial; - --tw-ease: initial; - --tw-content: ""; - } - } -}