Files
calendar/apps/ui-playground/tailwind.config.js
T
9a517a89b6 fix: toggle group segment design (#20549)
* add toggle state correctly

* fix height

---------

Co-authored-by: Sean Brydon <sean@Seans-Mac-mini.local>
2025-04-04 13:47:05 +00:00

22 lines
597 B
JavaScript

import { createPreset } from "fumadocs-ui/tailwind-plugin";
import base from "@calcom/config/tailwind-preset";
/** @type {import('tailwindcss').Config} */
export default {
content: [
...base.content,
"./components/**/*.{ts,tsx}",
"./app/**/*.{ts,tsx}",
"./content/**/*.{md,mdx}",
"./mdx-components.{ts,tsx}",
"./node_modules/fumadocs-ui/dist/**/*.js",
"../../internal/ui/src/**/*.tsx",
"../../internal/icons/src/**/*.tsx",
"../../packages/ui/components/**/*.{ts,tsx}",
],
plugins: [...base.plugins],
theme: base.theme,
presets: [createPreset()],
};