@bcc-code/component-library-vue 0.7.3 → 0.7.4
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/component-library.js +3149 -3149
- package/dist/component-library.umd.cjs +194 -194
- package/dist/index.css +1 -1
- package/dist/theme.css +11 -4
- package/package.json +1 -1
package/dist/theme.css
CHANGED
|
@@ -1838,11 +1838,18 @@
|
|
|
1838
1838
|
flex-grow: 1;
|
|
1839
1839
|
}
|
|
1840
1840
|
|
|
1841
|
-
/** Primevue 's component is missing the gap between input and dropdown */
|
|
1842
|
-
.p-autocomplete-overlay {
|
|
1843
|
-
margin-top: var(--p-anchor-gutter);
|
|
1844
|
-
}
|
|
1845
1841
|
|
|
1842
|
+
/**
|
|
1843
|
+
GUTTER FIX
|
|
1844
|
+
* Primevue's dropwdown components are all missing the gap between input and dropdown
|
|
1845
|
+
**/
|
|
1846
|
+
.p-autocomplete-overlay,
|
|
1847
|
+
.p-menu-overlay,
|
|
1848
|
+
.p-multiselect-overlay,
|
|
1849
|
+
.p-select-overlay,
|
|
1850
|
+
.p-treeselect-overlay {
|
|
1851
|
+
margin: var(--p-anchor-gutter) 0;
|
|
1852
|
+
}
|
|
1846
1853
|
|
|
1847
1854
|
|
|
1848
1855
|
|
package/package.json
CHANGED