aboutsummaryrefslogtreecommitdiff
path: root/apps/dreki_web/assets/app.css
blob: 44e75dca7735af4e0752d4f987c7a8d4bf21e2e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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;
}