2021-03-22 13:48:48 +00:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
|
|
@import './components/buttons.css';
|
|
|
|
@import './components/spinner.css';
|
2021-06-01 22:30:40 +00:00
|
|
|
@import './components/activelink.css';
|
2021-06-03 20:55:34 +00:00
|
|
|
@import './components/table.css';
|
2021-03-22 13:48:48 +00:00
|
|
|
|
2021-03-10 10:02:39 +00:00
|
|
|
body {
|
2021-03-22 13:48:48 +00:00
|
|
|
background-color: #f3f4f6;
|
2021-03-10 10:02:39 +00:00
|
|
|
}
|
|
|
|
|
2021-03-22 13:48:48 +00:00
|
|
|
.text-white-important {
|
|
|
|
color: white !important;
|
2021-03-10 10:02:39 +00:00
|
|
|
}
|
|
|
|
|
2021-03-22 13:48:48 +00:00
|
|
|
@layer utilities {
|
|
|
|
.transition-max-width {
|
|
|
|
-webkit-transition-property: max-width;
|
|
|
|
transition-property: max-width;
|
|
|
|
}
|
2021-05-11 14:49:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#timeZone input:focus {
|
|
|
|
box-shadow: none;
|
2021-06-14 18:53:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.weekdaySelect {
|
|
|
|
font-family: "Courier New", sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
.weekdaySelect button.active:first-child {
|
|
|
|
margin-left: -1px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.weekdaySelect button:not(.active) {
|
|
|
|
padding-left: calc(0.5rem + 0px);
|
|
|
|
margin-right: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.weekdaySelect button.active + button.active {
|
|
|
|
border-color: rgba(3, 169, 244, var(--tw-border-opacity))
|
|
|
|
rgba(3, 169, 244, var(--tw-border-opacity))
|
|
|
|
rgba(3, 169, 244, var(--tw-border-opacity))
|
|
|
|
white;
|
2021-03-22 13:48:48 +00:00
|
|
|
}
|