raintrack-ui/src/styles/tailwind.css

47 lines
878 B
CSS

/* purgecss start ignore */
@tailwind base;
@tailwind components;
/* purgecss end ignore */
@tailwind utilities;
/*forms*/
.input {
@apply shadow appearance-none border rounded w-full mb-1 py-2 px-3 text-gray-700 leading-tight h-10 align-text-top;
transition: all 0.3s;
}
.input.error {
@apply border-red-500
}
.input:focus {
@apply text-black outline-none;
-webkit-box-shadow: 0px 0px 4px 3px #4f89ed;
-moz-box-shadow: 0px 0px 4px 3px #4f89ed;
box-shadow: 0px 0px 4px 3px #4f89ed;
}
.input.error:focus {
-webkit-box-shadow: 0px 0px 4px 3px #f56565;
-moz-box-shadow: 0px 0px 4px 3px #f56565;
box-shadow: 0px 0px 4px 3px #f56565;
}
.input-error {
@apply text-red-500 text-xs italic h-5
}
.Toastify__toast {
padding-left: 24px !important;
@apply text-sm;
}
/* table stuff */
.griddle-table {
@apply table-auto;
}