@brickclay-org/ui 0.1.29 → 0.1.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
|
|
7
7
|
/* Control */
|
|
8
8
|
.bk-select-control {
|
|
9
|
-
@apply flex items-center justify-between gap-2 w-full bg-white border border-[#E3E3E7] rounded transition-all duration-200 cursor-pointer
|
|
9
|
+
@apply flex items-center justify-between gap-2 w-full bg-white border border-[#E3E3E7] rounded transition-all duration-200 cursor-pointer focus:border-transparent
|
|
10
|
+
focus-visible:!outline-[0.5px] focus-visible:!outline-[#6B7080]
|
|
11
|
+
;
|
|
10
12
|
box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
|
|
11
13
|
|
|
14
|
+
&:focus-visible{
|
|
15
|
+
outline-style: solid !important
|
|
16
|
+
}
|
|
12
17
|
|
|
13
18
|
&.bk-focused {
|
|
14
19
|
@apply border-[#6B7080] shadow-none z-10;
|