Initial commit for Deployer App

This commit is contained in:
2025-04-13 10:25:29 +02:00
commit c6755a1467
291 changed files with 15089 additions and 0 deletions

16
tailwind.config.js Normal file
View File

@ -0,0 +1,16 @@
const defaultTheme = require('tailwindcss/defaultTheme')
const windmill = require('@windmill/react-ui/config')
module.exports = windmill({
purge: ['src/**/*.js'],
theme: {
extend: {
fontFamily: {
sans: ['Inter', ...defaultTheme.fontFamily.sans],
},
boxShadow: {
bottom: '0 5px 6px -7px rgba(0, 0, 0, 0.6), 0 2px 4px -5px rgba(0, 0, 0, 0.06)',
},
},
},
})