From be0f537dc4fe384eef09436833c6407e6482c16d Mon Sep 17 00:00:00 2001 From: Rafi Zadanly Date: Thu, 9 Nov 2023 15:40:16 +0700 Subject: Initial commit --- src/common/styles/globals.css | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/common/styles/globals.css (limited to 'src/common/styles/globals.css') diff --git a/src/common/styles/globals.css b/src/common/styles/globals.css new file mode 100644 index 0000000..861f1c0 --- /dev/null +++ b/src/common/styles/globals.css @@ -0,0 +1,24 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + +html, +body { + @apply bg-neutral-100 font-primary; +} + +.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; +} -- cgit v1.2.3