aboutsummaryrefslogtreecommitdiff
path: root/apps/dreki_web/assets/app.css
diff options
context:
space:
mode:
Diffstat (limited to 'apps/dreki_web/assets/app.css')
-rw-r--r--apps/dreki_web/assets/app.css30
1 files changed, 30 insertions, 0 deletions
diff --git a/apps/dreki_web/assets/app.css b/apps/dreki_web/assets/app.css
new file mode 100644
index 0000000..44e75dc
--- /dev/null
+++ b/apps/dreki_web/assets/app.css
@@ -0,0 +1,30 @@
+@import "tailwindcss/base";
+@import "tailwindcss/components";
+@import "tailwindcss/utilities";
+
+
+.btn {
+ @apply px-4 py-2 inline-flex items-center border border-transparent focus:outline-none focus:ring-2 focus:ring-offset-2 text-base font-medium;
+}
+.btn-primary {
+ @apply bg-primary-600 text-white hover:bg-primary-700 focus:ring-primary-500;
+}
+.btn-secondary {
+ @apply bg-primary-100 text-primary-700 hover:bg-secondary-200 focus:ring-primary-500;
+}
+.btn-danger {
+ @apply bg-red-600 text-white hover:bg-red-700 focus:ring-red-500;
+}
+.btn-white {
+ @apply border-gray-300 text-gray-700 bg-white hover:bg-gray-50 focus:ring-primary-500;
+}
+.btn-xs {
+ @apply px-2.5 py-1.5 text-xs font-medium rounded shadow-sm;
+}
+.btn-sm {
+ @apply px-3 py-2 text-sm leading-4 font-medium shadow-sm;
+}
+
+ul.nav-tree li.node {
+ @apply font-bold;
+}