12 lines
254 B
CSS
Raw Normal View History

@tailwind base;
@tailwind components;
@tailwind utilities;
2025-01-30 19:12:23 +01:00
.text-input {
2025-01-30 19:20:29 +01:00
@apply border border-gray-300 rounded-lg focus:ring-2 focus:ring-orange-500 outline-orange-500 focus:border-orange-500 transition-colors;
}
2025-01-31 10:20:17 +01:00
option:disabled {
display: none;
2025-01-31 11:01:45 +01:00
}