@chipstcp/upyog-css 1.0.2 → 1.0.3
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/dist/index.css +16 -10
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/multiSelectDropdown.scss +8 -3
package/package.json
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
.multi-select-dropdown-wrap{
|
|
2
2
|
@apply relative text-form-field text-text-primary w-full;
|
|
3
|
+
max-width: 540px;
|
|
4
|
+
margin-bottom: 10px;
|
|
3
5
|
.master, .master-active{
|
|
4
|
-
@apply relative border border-solid
|
|
6
|
+
@apply relative border border-solid w-full;
|
|
7
|
+
border: 1px solid #d1d5db;
|
|
8
|
+
border-radius: 8px;
|
|
9
|
+
height: 3rem;
|
|
5
10
|
input[type=text]{
|
|
6
11
|
@apply absolute top-0 left-0 p-sm pl-sm min-h-full min-w-full opacity-0;
|
|
7
12
|
color: #1f2937 !important;
|
|
@@ -14,7 +19,7 @@
|
|
|
14
19
|
}
|
|
15
20
|
}
|
|
16
21
|
.label{
|
|
17
|
-
@apply flex justify-between
|
|
22
|
+
@apply flex justify-between items-center px-sm w-full h-full;
|
|
18
23
|
color: #1f2937;
|
|
19
24
|
svg{
|
|
20
25
|
@apply h-6 w-6;
|
|
@@ -22,7 +27,7 @@
|
|
|
22
27
|
}
|
|
23
28
|
|
|
24
29
|
&:hover{
|
|
25
|
-
|
|
30
|
+
box-shadow: 0 6px 18px rgba(37, 99, 235, 0.06);
|
|
26
31
|
}
|
|
27
32
|
}
|
|
28
33
|
|