1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-09 12:52:24 +04:00

Fix non full width selects #1392 (#1393)

This commit is contained in:
António Almeida
2023-02-21 17:41:42 +00:00
committed by GitHub
parent 844512861f
commit 7d231d56b3
+14
View File
@@ -4,6 +4,11 @@ $input-border-width: 1px;
@import "tom-select/src/scss/tom-select.bootstrap5.scss";
:root {
--ts-pr-clear-button: 0rem;
--ts-pr-caret: 0rem;
}
.ts-input {
color: inherit;
}
@@ -16,3 +21,12 @@ $input-border-width: 1px;
height: auto;
}
}
.ts-wrapper {
&.is-invalid,
&.is-valid {
.ts-control {
--ts-pr-clear-button: 1.5rem;
}
}
}