Skip to content

Commit cc16946

Browse files
committed
fix: transition delay of the background colors on input, select and textarea (#1606)
1 parent 25b450f commit cc16946

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/components/styled/select.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.select {
2-
@apply border border-base-content border-opacity-0 bg-base-100 pr-10 font-semibold transition duration-200 ease-in-out rounded-btn;
2+
@apply border border-base-content border-opacity-0 bg-base-100 pr-10 font-semibold rounded-btn;
33
&-bordered {
44
@apply border-opacity-20;
55
}

src/components/unstyled/file-input.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.file-input {
2-
@apply flex-shrink transition duration-200 ease-in-out h-12 pr-4 text-sm leading-loose;
2+
@apply flex-shrink h-12 pr-4 text-sm leading-loose;
33
&::file-selector-button {
44
@apply inline-flex flex-shrink-0 cursor-pointer select-none flex-wrap items-center justify-center border-transparent text-center transition duration-200 ease-in-out h-[2.875rem] px-4 text-sm min-h-[2.875rem] mr-4;
55
line-height: 1em;

src/components/unstyled/input.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.input {
2-
@apply flex-shrink transition duration-200 ease-in-out;
2+
@apply flex-shrink;
33
@apply h-12 px-4 text-sm leading-loose;
44
}
55
.input-group {

src/components/unstyled/textarea.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
.textarea {
2-
@apply flex-shrink transition duration-200 ease-in-out min-h-12;
2+
@apply flex-shrink min-h-12;
33
@apply py-2 px-4 text-sm leading-loose;
44
}

0 commit comments

Comments
 (0)