mirror of
https://github.com/unraid/api.git
synced 2026-01-06 00:30:22 -06:00
Co-authored-by: Eli Bosley <ekbosley@gmail.com> Co-authored-by: Pujit Mehrotra <pujit@lime-technology.com> Co-authored-by: mdatelle <mike@datelle.net> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Zack Spear <zackspear@users.noreply.github.com>
32 lines
772 B
TypeScript
32 lines
772 B
TypeScript
import type { Config } from "tailwindcss";
|
|
import { unraidPreset } from "./src/theme/preset";
|
|
|
|
export default {
|
|
presets: [unraidPreset],
|
|
content: [
|
|
"./src/components/**/*.{js,vue,ts}",
|
|
"./src/composables/**/*.{js,vue,ts}",
|
|
"./stories/**/*.stories.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
safelist: [
|
|
"dark",
|
|
"DropdownWrapper_blip",
|
|
"unraid_mark_1",
|
|
"unraid_mark_2",
|
|
"unraid_mark_3",
|
|
"unraid_mark_4",
|
|
"unraid_mark_6",
|
|
"unraid_mark_7",
|
|
"unraid_mark_8",
|
|
"unraid_mark_9",
|
|
{
|
|
pattern: /^text-(header-text-secondary|orange-dark)$/,
|
|
variants: ['group-hover', 'group-focus']
|
|
},
|
|
{
|
|
pattern: /^(underline|no-underline)$/,
|
|
variants: ['group-hover', 'group-focus']
|
|
},
|
|
],
|
|
} satisfies Partial<Config>;
|