@tailwind base; @tailwind components; @tailwind utilities; :root { --brand-color: #292929; --brand-text-color: #ffffff; } /* PhoneInput dark-mode overrides (it would add a lot of boilerplate to do this in JavaScript) */ .PhoneInputInput { @apply text-sm border-0 focus:ring-0; } .dark .PhoneInputInput { @apply bg-black; } .PhoneInputCountrySelect { @apply text-black; } /* DateRangePicker */ .react-daterange-picker > .react-daterange-picker__wrapper { /* border consistent with other inputs */ @apply px-2 py-1.5 lg:py-1 border-gray-300 rounded-sm sm:text-sm; } .react-daterange-picker > .react-daterange-picker__wrapper input { /* Makes sure the on-focus behaviour is like Cal.com's */ @apply rounded-sm focus:ring-primary-500 focus:border-primary-500 h-auto py-0.5 my-0.5; } /* note(PeerRich): TODO move @layer components into proper React Components: