fix search field behavior

This commit is contained in:
Anika Raemer 2025-09-14 14:24:35 +02:00
parent 30c138d13f
commit 5c3c74b32e
4 changed files with 19 additions and 15 deletions

View file

@ -28,6 +28,10 @@
@apply font-semibold mb-2 mt-4;
}
.label {
@apply text-gray-600
}
/* buttons */
.primary-button {
@apply bg-blue-300 px-4 py-2 shadow-md rounded-lg hover:bg-blue-400 text-gray-600 whitespace-nowrap
@ -41,15 +45,11 @@
@apply bg-gray-600 hover:bg-gray-800 text-white shadow-md rounded px-4 py-2 whitespace-nowrap
}
/* input field */
/* input fields like input and textarea */
.input-field {
@apply p-2 w-full border rounded-md placeholder-gray-400 border-gray-600 hover:border-blue-600 transition-colors text-gray-600 focus:outline-none focus:border-blue-800;
}
.text-area {
@apply border p-2 w-full mb-2 rounded placeholder-gray-400;
}
/* groups */
.button-group{
@apply flex gap-4 mt-4;