mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00
20 lines
404 B
JavaScript
20 lines
404 B
JavaScript
/* eslint-disable */
|
|
const defaultTheme = require('tailwindcss/defaultTheme');
|
|
|
|
module.exports = {
|
|
purge: ['./src/pages/**/*.{ts,tsx}', './src/components/**/*.{ts,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
|
|
},
|
|
},
|
|
},
|
|
variants: {},
|
|
plugins: [
|
|
require('@tailwindcss/ui')({
|
|
layout: 'sidebar',
|
|
}),
|
|
],
|
|
};
|