File size: 1,794 Bytes
fcc02a2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --background: #ffffff;
  --foreground: #171717;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
  }
}

body {
  color: var(--foreground);
  background: var(--background);
  font-family: Arial, Helvetica, sans-serif;
}

@layer components {
  /* control */
  .aitk-react-select-container .aitk-react-select__control {
    @apply flex w-full h-8 min-h-0 px-0 text-sm bg-gray-800 border border-gray-700 rounded-sm hover:border-gray-600 items-center;
  }

  /* selected label */
  .aitk-react-select-container .aitk-react-select__single-value {
    @apply flex-1 min-w-0 truncate text-sm text-neutral-200;
  }

  /* invisible input (keeps focus & typing, never wraps) */
  .aitk-react-select-container .aitk-react-select__input-container {
    @apply text-neutral-200;
  }

  /* focus */
  .aitk-react-select-container .aitk-react-select__control--is-focused {
    @apply ring-2 ring-gray-600 border-transparent hover:border-transparent shadow-none;
  }

  /* menu */
  .aitk-react-select-container .aitk-react-select__menu {
    @apply bg-gray-800 border border-gray-700;
  }

  /* options */
  .aitk-react-select-container .aitk-react-select__option {
    @apply text-sm text-neutral-200 bg-gray-800 hover:bg-gray-700;
  }

  /* indicator separator */
  .aitk-react-select-container .aitk-react-select__indicator-separator {
    @apply bg-gray-600;
  }

  /* indicators */
  .aitk-react-select-container .aitk-react-select__indicators,
  .aitk-react-select-container .aitk-react-select__indicator {
    @apply py-0 flex items-center;
  }

  /* placeholder */
  .aitk-react-select-container .aitk-react-select__placeholder {
    @apply text-sm text-neutral-200;
  }
}