@sk-web-gui/core 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 +2 -2
- package/src/components/forms.js +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sk-web-gui/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.30",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"files": [
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"postcss-import": "^14.0.2",
|
|
32
32
|
"tailwindcss": "^2.2.4"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "a2dd453f113d09d2e5b377fa6873eb4ef63f4f5e"
|
|
35
35
|
}
|
package/src/components/forms.js
CHANGED
|
@@ -242,7 +242,12 @@ module.exports = Forms = (colors) => ({
|
|
|
242
242
|
},
|
|
243
243
|
|
|
244
244
|
".form-select": {
|
|
245
|
-
|
|
245
|
+
"@apply min-h-[50px] text-body bg-white caret-transparent select-none cursor-pointer border-gray-stroke":{},
|
|
246
|
+
"background-image": "none",
|
|
247
|
+
|
|
248
|
+
"&-list": {
|
|
249
|
+
"@apply z-10 absolute w-full bg-white mt-0 border border-gray-stroke border-t-0": {},
|
|
250
|
+
},
|
|
246
251
|
|
|
247
252
|
"&-option": {
|
|
248
253
|
"@apply rounded-none cursor-default hover:text-white focus-visible:text-white hover:bg-primary focus-visible:bg-primary": {},
|