26 lines
552 B
CSS
26 lines
552 B
CSS
@import 'tailwindcss';
|
|
@import '@repo/ui/globals.css';
|
|
|
|
/**
|
|
* This is necessary to load the @repo/ui package when moving from
|
|
* @tailwindcss/vite v4.0.7 to v4.0.8.
|
|
*
|
|
* For more details, see:
|
|
* https://github.com/tailwindlabs/tailwindcss/issues/16733
|
|
*/
|
|
@source '../../../packages/ui';
|
|
|
|
@layer utilities {
|
|
/* Chrome, Safari, Edge, Opera */
|
|
.no-spinner::-webkit-outer-spin-button,
|
|
.no-spinner::-webkit-inner-spin-button {
|
|
-webkit-appearance: none;
|
|
margin: 0;
|
|
}
|
|
|
|
/* Firefox */
|
|
.no-spinner {
|
|
-moz-appearance: textfield;
|
|
}
|
|
}
|