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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user