mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-23 04:35:50 +00:00
* Full code review changes * Adds link * Removes the x * Update dashboard/15-final/README.md * Update dashboard/15-final/app/lib/placeholder-data.js * Update dashboard/README.md * Update dashboard/README.md --------- Co-authored-by: Delba de Oliveira <32464864+delbaoliveira@users.noreply.github.com>
19 lines
328 B
CSS
19 lines
328 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
input[type='number'] {
|
|
-moz-appearance: textfield;
|
|
appearance: textfield;
|
|
}
|
|
|
|
input[type='number']::-webkit-inner-spin-button {
|
|
-webkit-appearance: none;
|
|
margin: 0;
|
|
}
|
|
|
|
input[type='number']::-webkit-outer-spin-button {
|
|
-webkit-appearance: none;
|
|
margin: 0;
|
|
}
|