* add dependency * rename Input to TextInput and use daisy * base styling * storybook setup with tailwind and theme changer * daisy buttons * add flaticons * text input to daisy * Navbar to daisy * login using daisy * autodocs is... auto * refactor Tabs to separate components * move TextInput * move button * move navbar * remove index * move container * move loader * move tabs to navigation * organize storybook hierarchy * use card * remove storybook dark mode * README * ignore db file * ignore db * prisma scripts * format * blyat * fix redirect
29 lines
519 B
TypeScript
29 lines
519 B
TypeScript
import typography from '@tailwindcss/typography';
|
|
import daisyui from 'daisyui';
|
|
import type { Config } from 'tailwindcss';
|
|
|
|
export default {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
display: ['Baskervville SC'],
|
|
},
|
|
animation: {
|
|
fade: 'fadeIn .5s ease-in-out',
|
|
},
|
|
keyframes: {
|
|
fadeIn: {
|
|
from: { opacity: '0' },
|
|
to: { opacity: '1' },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
|
|
plugins: [typography, daisyui],
|
|
daisyui: {
|
|
logs: false,
|
|
},
|
|
} satisfies Config;
|