feat: switch to react aria and replace many components
This commit is contained in:
parent
cbecf85979
commit
3abd617a90
11 changed files with 536 additions and 298 deletions
|
|
@ -1,5 +1,8 @@
|
|||
/* eslint-disable @typescript-eslint/naming-convention */
|
||||
import type { Config } from 'tailwindcss'
|
||||
import colors from 'tailwindcss/colors'
|
||||
import animate from 'tailwindcss-animate'
|
||||
import aria from 'tailwindcss-react-aria-components'
|
||||
|
||||
export default {
|
||||
content: ['./app/**/*.{js,jsx,ts,tsx}'],
|
||||
|
|
@ -17,9 +20,13 @@ export default {
|
|||
extend: {
|
||||
height: {
|
||||
editor: 'calc(100vh - 20rem)'
|
||||
},
|
||||
colors: {
|
||||
main: colors.slate,
|
||||
ui: colors.neutral
|
||||
}
|
||||
}
|
||||
},
|
||||
plugins: []
|
||||
plugins: [animate, aria]
|
||||
} satisfies Config
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue