mirror of
https://github.com/MichaByte/OnBoard-Live.git
synced 2025-12-06 06:23:40 -05:00
14 lines
259 B
JavaScript
14 lines
259 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
theme: {
|
|
extend: {},
|
|
fontFamily: {
|
|
'display': ['Inter'],
|
|
'sans': ['Inter'],
|
|
'body': ['Inter']
|
|
}
|
|
},
|
|
plugins: [],
|
|
}
|
|
|