blob: ef8c0b87e711af8545393154addfc52d30789dab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
@tailwind base;
@tailwind components;
@tailwind utilities;
html,
body {
@apply bg-neutral-100 font-primary antialiased;
}
.react-select__control {
@apply h-auto !py-0.5 !rounded-medium !bg-default-100 !border-transparent;
}
.react-select__single-value {
@apply !whitespace-normal text-sm leading-6;
}
.react-select__menu {
@apply text-sm;
}
.react-select__placeholder {
@apply text-sm;
}
|