mirror of
https://github.com/bitwarden/clients.git
synced 2025-12-05 19:17:06 -06:00
* create the pricing library * Create pricing-card.component * Refactor the code * feat: Add pricing card component library * Fix the test failing error * Address billing pr comments * feat: Add Storybook documentation and stories for pricing-card component * Fix some ui feedback * Changes from the display and sizes * feat(billing): refactor pricing card with flexible title slots and active badge * Enhance pricing card with flexible design and button icons * refactor: organize pricing card files into dedicated folder * Complete pricing card enhancements with Chromatic feedback fixes * refactor base on pr coments * Fix the button alignment * Update all the card to have the same height * Fix the slot issue on the title * Fix the Lint format issue * Add the header in the stories book
25 lines
714 B
JavaScript
25 lines
714 B
JavaScript
/* eslint-disable */
|
|
const config = require("./libs/components/tailwind.config.base");
|
|
|
|
config.content = [
|
|
"./libs/components/src/**/*.{html,ts,mdx}",
|
|
"./libs/admin-console/src/**/*.{html,ts,mdx}",
|
|
"./libs/auth/src/**/*.{html,ts,mdx}",
|
|
"./libs/billing/src/**/*.{html,ts,mdx}",
|
|
"./libs/assets/src/**/*.{html,ts}",
|
|
"./libs/platform/src/**/*.{html,ts,mdx}",
|
|
"./libs/pricing/src/**/*.{html,ts,mdx}",
|
|
"./libs/tools/send/send-ui/src/*.{html,ts,mdx}",
|
|
"./libs/vault/src/**/*.{html,ts,mdx}",
|
|
"./apps/web/src/**/*.{html,ts,mdx}",
|
|
"./bitwarden_license/bit-web/src/**/*.{html,ts,mdx}",
|
|
"./.storybook/preview.js",
|
|
];
|
|
config.safelist = [
|
|
{
|
|
pattern: /tw-bg-(.*)/,
|
|
},
|
|
];
|
|
|
|
module.exports = config;
|