diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-11-09 15:40:16 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-11-09 15:40:16 +0700 |
| commit | be0f537dc4fe384eef09436833c6407e6482c16d (patch) | |
| tree | 194b1ad3f34396cb8149075bbbd38b854aedf361 /src/common/styles | |
| parent | 5d5401ae36e7e0c8eb38ccd943c1aa44a9573d35 (diff) | |
Initial commit
Diffstat (limited to 'src/common/styles')
| -rw-r--r-- | src/common/styles/fonts.ts | 8 | ||||
| -rw-r--r-- | src/common/styles/globals.css | 24 |
2 files changed, 32 insertions, 0 deletions
diff --git a/src/common/styles/fonts.ts b/src/common/styles/fonts.ts new file mode 100644 index 0000000..bf78bf7 --- /dev/null +++ b/src/common/styles/fonts.ts @@ -0,0 +1,8 @@ +import { Inter } from "next/font/google"; + +export const inter = Inter({ + subsets: ["latin"], + display: "fallback", + weight: ["400", "500", "600", "700"], + variable: "--font-inter", +}); 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; +} |
