jonbio/css/tailwind.css

18 lines
371 B
CSS
Raw Normal View History

2021-01-09 17:50:45 +08:00
@tailwind base;
@tailwind components;
@tailwind utilities;
.task-list-item:before {
2021-01-10 15:14:26 +08:00
@apply hidden;
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;
}