mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49:13 +00:00
feat: add webui
This commit is contained in:
parent
a838d994a6
commit
773e57afe6
59 changed files with 19794 additions and 0 deletions
38
web/tailwind.config.js
Normal file
38
web/tailwind.config.js
Normal file
|
@ -0,0 +1,38 @@
|
|||
const colors = require('tailwindcss/colors')
|
||||
|
||||
module.exports = {
|
||||
purge: {
|
||||
content: [
|
||||
'./src/**/*.{tsx,ts,html,css}',
|
||||
],
|
||||
safelist: [
|
||||
'col-span-1',
|
||||
'col-span-2',
|
||||
'col-span-3',
|
||||
'col-span-4',
|
||||
'col-span-5',
|
||||
'col-span-6',
|
||||
'col-span-7',
|
||||
'col-span-8',
|
||||
'col-span-9',
|
||||
'col-span-10',
|
||||
'col-span-11',
|
||||
'col-span-12',
|
||||
],
|
||||
},
|
||||
darkMode: false, // or 'media' or 'class'
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
gray: colors.gray,
|
||||
teal: colors.teal,
|
||||
}
|
||||
},
|
||||
},
|
||||
variants: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [
|
||||
require('@tailwindcss/forms'),
|
||||
],
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue