jonbio/css/tailwind.css

22 lines
413 B
CSS
Raw Normal View History

2021-01-09 17:50:45 +08:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2021-12-19 12:06:08 +01:00
.task-list-item::before {
2021-01-10 15:14:26 +08:00
@apply hidden;
2021-01-09 17:50:45 +08:00
}
2021-12-19 12:06:08 +01:00
.task-list-item {
@apply list-none;
}
2021-01-09 17:50:45 +08:00
html {
scroll-behavior: smooth;
}
2021-09-10 23:23:47 +08:00
/* https://stackoverflow.com/questions/61083813/how-to-avoid-internal-autofill-selected-style-to-be-applied */
input:-webkit-autofill,
input:-webkit-autofill:focus {
transition: background-color 600000s 0s, color 600000s 0s;
}