feat(Child): add broke message and update button styles

This commit is contained in:
Jan K9f 2024-09-03 09:10:37 +02:00
commit f243483688
Signed by: jank
GPG key ID: B267751B8AE29EFE
5 changed files with 31 additions and 7 deletions

View file

@ -1,10 +1,17 @@
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors');
module.exports = {
content: [
"./src/**/*.{html,ts}",
],
theme: {
extend: {},
extend: {
colors: {
...colors,
}
},
},
plugins: [],
}