Add Playwright and Tailwind workflow

This commit is contained in:
rajchales-monito
2026-08-06 17:18:10 +02:00
parent 6374e0502f
commit 86df1bf0b0
9 changed files with 1344 additions and 3 deletions
+23
View File
@@ -0,0 +1,23 @@
@import "tailwindcss";
@theme {
--color-brand: #0f8f6f;
--color-brand-ink: #ffffff;
--color-surface: #ffffff;
--color-ink: #17211d;
--color-muted: #647067;
}
@layer components {
.mf-ui-button {
@apply inline-flex h-10 items-center justify-center gap-2 rounded-md border border-slate-300 bg-white px-3 text-sm font-semibold text-slate-800 shadow-sm transition hover:bg-slate-50 focus:outline-none focus:ring-2 focus:ring-brand/35;
}
.mf-ui-panel-header {
@apply flex min-h-14 items-center justify-between border-b border-slate-200 bg-white px-4 text-sm font-semibold text-slate-900;
}
.mf-ui-select {
@apply h-10 rounded-md border border-slate-300 bg-white px-3 text-sm text-slate-800 shadow-sm focus:border-brand focus:outline-none focus:ring-2 focus:ring-brand/25;
}
}