2021-03-22 13:48:48 +00:00
|
|
|
|
@tailwind base;
|
|
|
|
|
@tailwind components;
|
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
2023-02-17 17:53:17 +00:00
|
|
|
|
|
2022-11-04 15:40:46 +00:00
|
|
|
|
|
2022-07-27 02:24:00 +00:00
|
|
|
|
body {
|
|
|
|
|
text-rendering: optimizeLegibility;
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-16 08:51:46 +00:00
|
|
|
|
:root {
|
|
|
|
|
--brand-color: #292929;
|
2021-12-14 10:39:32 +00:00
|
|
|
|
--brand-text-color: #ffffff;
|
2022-03-05 15:37:46 +00:00
|
|
|
|
--brand-color-dark-mode: #fafafa;
|
|
|
|
|
--brand-text-color-dark-mode: #292929;
|
2021-11-16 08:51:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-08-08 19:39:51 +00:00
|
|
|
|
/*
|
|
|
|
|
Desktop App specific CSS
|
|
|
|
|
https://docs.todesktop.com/
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* disable user selection on buttons, links and images on desktop app */
|
|
|
|
|
html.todesktop button,
|
|
|
|
|
html.todesktop a,
|
2022-09-07 15:01:33 +00:00
|
|
|
|
html.todesktop img,
|
|
|
|
|
html.todesktop header{
|
2022-08-08 19:39:51 +00:00
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
-khtml-user-select: none;
|
|
|
|
|
-moz-user-select: none;
|
|
|
|
|
-ms-user-select: none;
|
|
|
|
|
user-select: none;
|
2022-08-17 20:50:25 +00:00
|
|
|
|
cursor: default !important;
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-24 20:18:42 +00:00
|
|
|
|
html.todesktop,
|
2022-08-17 20:50:25 +00:00
|
|
|
|
html.todesktop div {
|
|
|
|
|
cursor: default !important;
|
2022-08-08 19:39:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* make header draggable on desktop app */
|
2022-09-07 15:01:33 +00:00
|
|
|
|
html.todesktop header{
|
2022-08-08 19:39:51 +00:00
|
|
|
|
-webkit-app-region: drag;
|
|
|
|
|
}
|
2022-09-07 15:01:33 +00:00
|
|
|
|
html.todesktop header button{
|
2022-08-08 19:39:51 +00:00
|
|
|
|
-webkit-app-region: no-drag;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html.todesktop .logo {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.desktop-only {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html.todesktop .desktop-only {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html.todesktop .desktop-hidden {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html.todesktop header {
|
2022-09-07 15:01:33 +00:00
|
|
|
|
margin-top: -14px;
|
2022-08-08 19:39:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html.todesktop header nav {
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-07 15:01:33 +00:00
|
|
|
|
html.todesktop aside {
|
|
|
|
|
margin:0px -6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* TODO: add "native" MacOS colors
|
|
|
|
|
requires darkmode for MacOS first
|
|
|
|
|
|
|
|
|
|
html.todesktop .desktop-transparent{
|
|
|
|
|
background: transparent !important;
|
|
|
|
|
border: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html.todesktop aside a {
|
|
|
|
|
height: 28px;
|
|
|
|
|
padding: 0px 8px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #383438 !important
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html.todesktop nav a:hover{
|
|
|
|
|
background-color: inherit !important
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html.todesktop nav a[aria-current="page"]{
|
|
|
|
|
background: rgba(0, 0, 0, 0.1) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html.todesktop nav a svg{
|
|
|
|
|
color: #0272F7 !important
|
2022-09-30 09:12:22 +00:00
|
|
|
|
}
|
2022-09-07 15:01:33 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
2022-06-09 10:46:03 +00:00
|
|
|
|
/*
|
|
|
|
|
Adds Utility to hide scrollbar to tailwind
|
|
|
|
|
https://github.com/tailwindlabs/tailwindcss/discussions/2394
|
|
|
|
|
https://github.com/tailwindlabs/tailwindcss/pull/5732
|
|
|
|
|
*/
|
|
|
|
|
@layer utilities {
|
|
|
|
|
@variants responsive {
|
|
|
|
|
/* Chrome, Safari and Opera */
|
|
|
|
|
.no-scrollbar::-webkit-scrollbar {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.no-scrollbar {
|
2022-07-15 16:39:11 +00:00
|
|
|
|
-ms-overflow-style: none; /* IE and Edge */
|
|
|
|
|
scrollbar-width: none; /* Firefox */
|
2022-06-09 10:46:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-05 21:16:25 +00:00
|
|
|
|
/*
|
2022-04-14 14:58:23 +00:00
|
|
|
|
* Override the default tailwindcss-forms styling (default is: 'colors.blue.600')
|
2022-05-05 21:16:25 +00:00
|
|
|
|
* @see: https://github.com/tailwindlabs/tailwindcss-forms/issues/14#issuecomment-1005376006
|
2022-04-14 14:58:23 +00:00
|
|
|
|
*/
|
2022-04-14 21:25:24 +00:00
|
|
|
|
[type="text"]:focus,
|
|
|
|
|
[type="email"]:focus,
|
|
|
|
|
[type="url"]:focus,
|
|
|
|
|
[type="password"]:focus,
|
|
|
|
|
[type="number"]:focus,
|
|
|
|
|
[type="date"]:focus,
|
|
|
|
|
[type="datetime-local"]:focus,
|
|
|
|
|
[type="month"]:focus,
|
|
|
|
|
[type="search"]:focus,
|
|
|
|
|
[type="tel"]:focus,
|
|
|
|
|
[type="checkbox"]:focus,
|
|
|
|
|
[type="radio"]:focus,
|
|
|
|
|
[type="time"]:focus,
|
|
|
|
|
[type="week"]:focus,
|
2022-04-14 14:58:23 +00:00
|
|
|
|
[multiple]:focus,
|
|
|
|
|
textarea:focus,
|
|
|
|
|
select:focus {
|
|
|
|
|
--tw-ring-color: var(--brand-color);
|
|
|
|
|
border-color: var(--brand-color);
|
|
|
|
|
}
|
2022-11-24 11:53:29 +00:00
|
|
|
|
/* https://stackoverflow.com/a/69308190 */
|
|
|
|
|
input[type='text']:focus { box-shadow: none; }
|
|
|
|
|
|
2022-04-14 14:58:23 +00:00
|
|
|
|
|
2023-03-06 16:44:31 +00:00
|
|
|
|
@layer components {
|
|
|
|
|
.scroll-bar{
|
|
|
|
|
@apply scrollbar-thin scrollbar-thumb-rounded-md dark:scrollbar-thumb-darkgray-300 scrollbar-thumb-gray-300 scrollbar-track-transparent
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2022-03-17 16:48:23 +00:00
|
|
|
|
button[role="switch"][data-state="checked"] {
|
|
|
|
|
@apply bg-gray-900;
|
|
|
|
|
}
|
2022-09-06 22:58:16 +00:00
|
|
|
|
/* TODO: avoid global specific css */
|
|
|
|
|
/* button[role="switch"][data-state="checked"] span {
|
2022-09-30 09:12:22 +00:00
|
|
|
|
transform: translateX(16px);
|
2022-09-06 22:58:16 +00:00
|
|
|
|
} */
|
2022-03-17 16:48:23 +00:00
|
|
|
|
|
2021-09-27 21:12:55 +00:00
|
|
|
|
/* DateRangePicker */
|
2022-09-30 09:12:22 +00:00
|
|
|
|
/*
|
2022-09-05 15:34:03 +00:00
|
|
|
|
TODO:: Remove on V2 launch
|
|
|
|
|
*/
|
2021-09-27 21:12:55 +00:00
|
|
|
|
.react-daterange-picker > .react-daterange-picker__wrapper {
|
|
|
|
|
/* border consistent with other inputs */
|
2022-07-27 02:24:00 +00:00
|
|
|
|
@apply rounded-sm border-gray-300 px-2 py-1.5 text-sm lg:py-1;
|
2021-09-27 21:12:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.react-daterange-picker > .react-daterange-picker__wrapper input {
|
|
|
|
|
/* Makes sure the on-focus behaviour is like Cal.com's */
|
2022-04-14 14:58:23 +00:00
|
|
|
|
@apply my-0.5 h-auto rounded-sm py-0.5;
|
2021-09-27 21:12:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-09-05 15:34:03 +00:00
|
|
|
|
|
2021-06-20 09:57:33 +00:00
|
|
|
|
@layer components {
|
2021-09-22 21:23:19 +00:00
|
|
|
|
/* slider */
|
|
|
|
|
.slider {
|
2022-02-09 00:05:13 +00:00
|
|
|
|
@apply relative flex h-4 w-40 select-none items-center;
|
2021-09-22 21:23:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slider > .slider-track {
|
2023-01-20 22:04:58 +00:00
|
|
|
|
@apply relative h-1 flex-grow rounded-md bg-gray-400;
|
2021-09-22 21:23:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slider .slider-range {
|
2023-01-20 22:04:58 +00:00
|
|
|
|
@apply absolute h-full rounded-full bg-gray-700;
|
2021-09-22 21:23:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slider .slider-thumb {
|
2023-01-20 22:04:58 +00:00
|
|
|
|
@apply block h-3 w-3 cursor-pointer rounded-full bg-gray-700 transition-all;
|
2021-09-22 21:23:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slider .slider-thumb:hover {
|
2023-01-20 22:04:58 +00:00
|
|
|
|
@apply bg-gray-600;
|
2021-09-22 21:23:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slider .slider-thumb:focus {
|
|
|
|
|
box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.2);
|
|
|
|
|
}
|
2022-09-05 15:34:03 +00:00
|
|
|
|
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-05 04:33:08 +00:00
|
|
|
|
/* !important to style multi-email input */
|
2021-08-25 10:18:37 +00:00
|
|
|
|
::-moz-selection {
|
2021-08-08 15:29:45 +00:00
|
|
|
|
color: white;
|
|
|
|
|
background: black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::selection {
|
|
|
|
|
color: white;
|
|
|
|
|
background: black;
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-15 22:46:14 +00:00
|
|
|
|
/* hide chat bubble on mobile */
|
2021-09-22 18:36:13 +00:00
|
|
|
|
@media only screen and (max-width: 768px) {
|
2022-03-18 15:09:13 +00:00
|
|
|
|
/* Intercom FAB*/
|
2022-03-15 22:46:14 +00:00
|
|
|
|
#launcher {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
2022-03-18 15:09:13 +00:00
|
|
|
|
|
|
|
|
|
/* Zendesk FAB*/
|
2022-03-15 22:46:14 +00:00
|
|
|
|
div[role="presentation"] > iframe {
|
2021-09-22 21:23:19 +00:00
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
2022-03-18 15:09:13 +00:00
|
|
|
|
|
|
|
|
|
/* Helpscout FAB*/
|
|
|
|
|
.BeaconFabButtonFrame {
|
|
|
|
|
margin-left: -30px;
|
|
|
|
|
left: 50%;
|
|
|
|
|
bottom: 28px !important;
|
|
|
|
|
z-index: 1058 !important;
|
|
|
|
|
}
|
2021-08-08 21:44:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-09-22 21:23:19 +00:00
|
|
|
|
.react-multi-email > [type="text"] {
|
2023-01-20 22:04:58 +00:00
|
|
|
|
@apply dark:placeholder:text-darkgray-600 focus:border-brand dark:border-darkgray-300 dark:text-white block w-full rounded-md border-gray-300 text-sm focus:ring-black disabled:bg-gray-200 disabled:hover:cursor-not-allowed dark:bg-transparent dark:selection:bg-green-500 disabled:dark:text-gray-500;
|
2021-08-08 21:44:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.react-multi-email [data-tag] {
|
|
|
|
|
box-shadow: none !important;
|
2023-01-20 22:04:58 +00:00
|
|
|
|
@apply dark:bg-brand my-1 inline-flex items-center rounded-md border border-transparent bg-gray-200 px-2 py-1 text-sm font-medium text-gray-900 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-gray-500 focus:ring-offset-2 ltr:mr-2 rtl:ml-2 dark:text-white;
|
2021-08-08 21:44:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-09-22 21:23:19 +00:00
|
|
|
|
.react-multi-email > span[data-placeholder] {
|
|
|
|
|
display: none;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0.8rem;
|
|
|
|
|
top: 0.75rem;
|
|
|
|
|
line-height: 1.25rem;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
}
|
2021-08-08 21:44:11 +00:00
|
|
|
|
|
2021-09-22 21:23:19 +00:00
|
|
|
|
.react-multi-email.empty > span[data-placeholder] {
|
|
|
|
|
display: inline;
|
|
|
|
|
color: #646b7a;
|
|
|
|
|
}
|
2021-08-05 04:33:08 +00:00
|
|
|
|
|
2021-09-22 21:23:19 +00:00
|
|
|
|
.react-multi-email.focused > span[data-placeholder] {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2021-08-05 04:33:08 +00:00
|
|
|
|
|
2021-09-22 21:23:19 +00:00
|
|
|
|
.react-multi-email > input {
|
|
|
|
|
width: 100% !important;
|
|
|
|
|
display: inline-block !important;
|
|
|
|
|
@apply mt-1;
|
|
|
|
|
}
|
2021-09-22 18:36:13 +00:00
|
|
|
|
|
2021-09-22 21:23:19 +00:00
|
|
|
|
.react-multi-email [data-tag] {
|
2023-01-20 22:04:58 +00:00
|
|
|
|
@apply my-1 inline-flex items-center rounded-md border border-transparent bg-gray-200 px-2 py-1 text-sm font-medium text-gray-900 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-gray-500 focus:ring-offset-2 ltr:mr-2 rtl:ml-2 dark:bg-gray-900 dark:text-white dark:hover:bg-gray-700;
|
2021-09-22 21:23:19 +00:00
|
|
|
|
}
|
2021-09-22 18:36:13 +00:00
|
|
|
|
|
2021-09-22 21:23:19 +00:00
|
|
|
|
.react-multi-email [data-tag] [data-tag-item] {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
2021-09-22 18:36:13 +00:00
|
|
|
|
|
2021-09-22 21:23:19 +00:00
|
|
|
|
.react-multi-email [data-tag] [data-tag-handle] {
|
|
|
|
|
margin-left: 0.833em;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
2021-08-05 04:33:08 +00:00
|
|
|
|
|
2021-08-02 15:24:01 +00:00
|
|
|
|
/* !important to override react-dates */
|
2021-09-22 21:23:19 +00:00
|
|
|
|
.DateRangePickerInput__withBorder {
|
|
|
|
|
border: 0 !important;
|
2021-08-02 15:24:01 +00:00
|
|
|
|
}
|
2021-09-22 21:23:19 +00:00
|
|
|
|
.DateInput_input {
|
|
|
|
|
border: 1px solid #d1d5db !important;
|
2021-08-02 15:24:01 +00:00
|
|
|
|
border-radius: 2px !important;
|
|
|
|
|
font-size: inherit !important;
|
|
|
|
|
font-weight: inherit !important;
|
|
|
|
|
color: #000;
|
|
|
|
|
padding: 11px 11px 9px !important;
|
|
|
|
|
line-height: 16px !important;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-22 21:23:19 +00:00
|
|
|
|
.DateInput_input__focused {
|
2021-08-02 15:24:01 +00:00
|
|
|
|
border: 2px solid #000 !important;
|
|
|
|
|
border-radius: 2px !important;
|
|
|
|
|
box-shadow: none !important;
|
|
|
|
|
padding: 10px 10px 9px !important;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-22 21:23:19 +00:00
|
|
|
|
.DateRangePickerInput_arrow {
|
|
|
|
|
padding: 0px 10px;
|
2021-08-02 15:24:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-20 09:57:33 +00:00
|
|
|
|
.loader {
|
2021-08-02 14:10:24 +00:00
|
|
|
|
display: block;
|
|
|
|
|
width: 30px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
margin: 60px auto;
|
|
|
|
|
position: relative;
|
2021-08-04 19:39:59 +00:00
|
|
|
|
border-width: 4px;
|
|
|
|
|
border-style: solid;
|
2021-08-02 14:10:24 +00:00
|
|
|
|
animation: loader 2s infinite ease;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-02 14:10:24 +00:00
|
|
|
|
.loader-inner {
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 100%;
|
|
|
|
|
animation: loader-inner 2s infinite ease-in;
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-06 18:16:32 +00:00
|
|
|
|
.no-ring-inset {
|
|
|
|
|
--tw-ring-inset: unset;
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-02 14:10:24 +00:00
|
|
|
|
@keyframes loader {
|
|
|
|
|
0% {
|
|
|
|
|
transform: rotate(0deg);
|
|
|
|
|
}
|
2021-08-25 10:18:37 +00:00
|
|
|
|
|
2021-08-02 14:10:24 +00:00
|
|
|
|
25% {
|
|
|
|
|
transform: rotate(180deg);
|
|
|
|
|
}
|
2021-08-25 10:18:37 +00:00
|
|
|
|
|
2021-08-02 14:10:24 +00:00
|
|
|
|
50% {
|
|
|
|
|
transform: rotate(180deg);
|
|
|
|
|
}
|
2021-08-25 10:18:37 +00:00
|
|
|
|
|
2021-08-02 14:10:24 +00:00
|
|
|
|
75% {
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
}
|
2021-08-25 10:18:37 +00:00
|
|
|
|
|
2021-08-02 14:10:24 +00:00
|
|
|
|
100% {
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes loader-inner {
|
|
|
|
|
0% {
|
|
|
|
|
height: 0%;
|
|
|
|
|
}
|
2021-08-25 10:18:37 +00:00
|
|
|
|
|
2021-08-02 14:10:24 +00:00
|
|
|
|
25% {
|
|
|
|
|
height: 0%;
|
|
|
|
|
}
|
2021-08-25 10:18:37 +00:00
|
|
|
|
|
2021-08-02 14:10:24 +00:00
|
|
|
|
50% {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
2021-08-25 10:18:37 +00:00
|
|
|
|
|
2021-08-02 14:10:24 +00:00
|
|
|
|
75% {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
2021-08-25 10:18:37 +00:00
|
|
|
|
|
2021-08-02 14:10:24 +00:00
|
|
|
|
100% {
|
|
|
|
|
height: 0%;
|
|
|
|
|
}
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav#nav--settings > a {
|
2022-02-09 00:05:13 +00:00
|
|
|
|
@apply flex items-center border-l-4 border-transparent px-3 py-2 text-sm font-medium text-gray-900 hover:bg-gray-50 hover:text-gray-900;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav#nav--settings > a svg {
|
2022-02-09 00:05:13 +00:00
|
|
|
|
@apply mr-3 -ml-1 h-6 w-6 flex-shrink-0 text-gray-400 group-hover:text-gray-500;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav#nav--settings > a.active {
|
2023-01-20 22:04:58 +00:00
|
|
|
|
@apply border-gray-500 bg-gray-50 text-gray-700 hover:bg-gray-50 hover:text-gray-700;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav#nav--settings > a.active svg {
|
2023-01-12 16:57:43 +00:00
|
|
|
|
@apply text-gray-500;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-14 04:14:26 +00:00
|
|
|
|
hr {
|
|
|
|
|
@apply border-gray-200;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-22 13:48:48 +00:00
|
|
|
|
.text-white-important {
|
2021-09-22 21:23:19 +00:00
|
|
|
|
color: white !important;
|
2021-03-10 10:02:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-03-22 13:48:48 +00:00
|
|
|
|
@layer utilities {
|
2021-09-22 21:23:19 +00:00
|
|
|
|
.transition-max-width {
|
|
|
|
|
-webkit-transition-property: max-width;
|
|
|
|
|
transition-property: max-width;
|
|
|
|
|
}
|
2021-05-11 14:49:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#timeZone input:focus {
|
2021-09-22 21:23:19 +00:00
|
|
|
|
box-shadow: none;
|
2021-06-14 18:53:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-09 23:51:30 +00:00
|
|
|
|
/* react-date-picker forces a border upon us, cast it away */
|
|
|
|
|
.react-date-picker__wrapper {
|
|
|
|
|
border: none !important;
|
|
|
|
|
}
|
2022-04-29 17:17:34 +00:00
|
|
|
|
|
2022-12-14 17:30:55 +00:00
|
|
|
|
.react-date-picker__inputGroup__input {
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-29 17:17:34 +00:00
|
|
|
|
/* animations */
|
2022-07-15 16:39:11 +00:00
|
|
|
|
.slideInBottom {
|
|
|
|
|
animation-duration: 0.3s;
|
2022-04-29 17:17:34 +00:00
|
|
|
|
animation-fill-mode: both;
|
2022-07-15 16:39:11 +00:00
|
|
|
|
animation-name: slideInBottom;
|
2022-04-29 17:17:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes slideInBottom {
|
2022-07-27 02:24:00 +00:00
|
|
|
|
from {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transform: translateY(30%);
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
to {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
pointer-events: auto;
|
|
|
|
|
}
|
2022-04-29 17:17:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* animations */
|
2022-07-15 16:39:11 +00:00
|
|
|
|
.slideInTop {
|
|
|
|
|
animation-duration: 0.3s;
|
2022-04-29 17:17:34 +00:00
|
|
|
|
animation-fill-mode: both;
|
2022-07-15 16:39:11 +00:00
|
|
|
|
animation-name: slideInTop;
|
2022-04-29 17:17:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes slideInTop {
|
2022-07-27 02:24:00 +00:00
|
|
|
|
from {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transform: translateY(-20%);
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
to {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
pointer-events: auto;
|
|
|
|
|
transform: translateY(0%);
|
|
|
|
|
}
|
2022-04-29 17:17:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-07-15 16:39:11 +00:00
|
|
|
|
.fadeIn {
|
|
|
|
|
animation-duration: 0.3s;
|
2022-04-29 17:17:34 +00:00
|
|
|
|
animation-fill-mode: both;
|
|
|
|
|
animation-name: fadeIn;
|
|
|
|
|
animation-timing-function: ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes fadeIn {
|
2022-07-15 16:39:11 +00:00
|
|
|
|
from {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
to {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-09-30 09:12:22 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Makes sure h-screen works on mobile Safari. By default h-screen
|
|
|
|
|
* does not take into account the height of the address bar, causing
|
|
|
|
|
* weird behaviour when scrolling — sometimes the height will be correct
|
|
|
|
|
* and sometimes it won't, depending on whether the address bar is
|
|
|
|
|
* in 'collapsed' state or not.
|
|
|
|
|
* @see: https://benborgers.com/posts/tailwind-h-screen
|
|
|
|
|
*/
|
|
|
|
|
@supports (-webkit-touch-callout: none) {
|
|
|
|
|
.h-screen {
|
|
|
|
|
height: -webkit-fill-available;
|
|
|
|
|
}
|
2022-11-30 20:51:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-search-cancel-button {
|
|
|
|
|
-webkit-appearance: none;
|
2023-01-12 16:57:43 +00:00
|
|
|
|
}
|