10 lines
341 B
CSS
10 lines
341 B
CSS
input[type="email"],
|
|
input[type="text"],
|
|
input[type="password"],
|
|
input[type="search"] {
|
|
@apply border-md border-gray-800 bg-white rounded-md shadow-input;
|
|
@apply focus:border-primary focus:ring-2 focus:ring-offset-2 focus:ring-cyan-600;
|
|
transition: box-shadow 125ms ease-in-out,
|
|
border-color 125ms ease-in-out;
|
|
}
|