In this commit, we have made several updates to tailwind configuration files to ensure better scalability and include exceptions for node modules. Moreover, the account selector component now uses a personalized avatar for each account. This was achieved by accessing personal account data through a hook and introducing a new UserAvatar function to display the avatar. Check component was also migrated to CheckCircle and minor layout and styling adjustments were done for better UI experience.
11 lines
312 B
TypeScript
11 lines
312 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
|
|
import baseConfig from '@kit/tailwind-config';
|
|
|
|
export default {
|
|
// We need to append the path to the UI package to the content array so that
|
|
// those classes are included correctly.
|
|
content: [...baseConfig.content],
|
|
presets: [baseConfig],
|
|
} satisfies Config;
|