Update tailwind config and implement personal account avatar

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.
This commit is contained in:
giancarlo
2024-03-29 00:38:59 +08:00
parent 643e6cab57
commit b4e714e580
3 changed files with 33 additions and 11 deletions

View File

@@ -3,7 +3,11 @@ import { fontFamily } from 'tailwindcss/defaultTheme';
export default {
darkMode: ['class'],
content: ['../../packages/**/*.tsx', '../../apps/**/*.tsx'],
content: [
'../../packages/**/*.tsx',
'../../apps/**/*.tsx',
'!./**/node_modules/**',
],
theme: {
container: {
center: true,