Some more CSS styling for the options page.

This commit is contained in:
Ryan Breen
2023-01-25 00:14:15 -05:00
parent b6acf27087
commit 83cf21e5f5
6 changed files with 284 additions and 90 deletions

View File

@@ -1,3 +1,13 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind utilities;
@layer components {
.btn {
@apply rounded-lg p-1.5 bg-fuchsia-900 text-fuchsia-400 hover:bg-fuchsia-800 hover:text-fuchsia-300 active:bg-fuchsia-700 active:text-fuchsia-200;
}
.input {
@apply bg-fuchsia-200 text-fuchsia-800 rounded-lg p-1.5;
}
}