tailwind c ss
This commit is contained in:
31
ui-kit/styles/tailwind.css
Normal file
31
ui-kit/styles/tailwind.css
Normal file
@@ -0,0 +1,31 @@
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
@layer base {
|
||||
body {
|
||||
@apply m-0 bg-slate-100 text-slate-800;
|
||||
}
|
||||
|
||||
a {
|
||||
@apply text-slate-800;
|
||||
}
|
||||
}
|
||||
|
||||
@layer components {
|
||||
.row {
|
||||
@apply flex flex-wrap gap-2;
|
||||
}
|
||||
|
||||
.muted {
|
||||
@apply text-sm text-slate-500;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
@apply rounded-lg bg-slate-900 px-4 py-2 text-white hover:bg-slate-700;
|
||||
}
|
||||
|
||||
.input-base {
|
||||
@apply rounded-lg border border-slate-300 px-3 py-2;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user