@fox-js/foxui 4.0.1-88 → 4.0.1-89
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.cjs.js +2 -2
- package/dist/index.esm.js +3113 -3110
- package/dist/index.umd.js +2 -2
- package/dist/style.css +9 -5
- package/dist/style.js +1 -1
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -9772,7 +9772,7 @@
|
|
|
9772
9772
|
color: var(--fox-dark-color-gray, var(--fox-text-color, gray));
|
|
9773
9773
|
}
|
|
9774
9774
|
|
|
9775
|
-
.fox-
|
|
9775
|
+
.fox-signature__inner {
|
|
9776
9776
|
border: 1px solid #dadada;
|
|
9777
9777
|
justify-content: center;
|
|
9778
9778
|
align-items: center;
|
|
@@ -9781,6 +9781,14 @@
|
|
|
9781
9781
|
display: flex;
|
|
9782
9782
|
}
|
|
9783
9783
|
|
|
9784
|
+
.fox-signature__toolbar {
|
|
9785
|
+
flex-flow: row;
|
|
9786
|
+
justify-content: center;
|
|
9787
|
+
align-items: center;
|
|
9788
|
+
gap: 15px;
|
|
9789
|
+
display: flex;
|
|
9790
|
+
}
|
|
9791
|
+
|
|
9784
9792
|
.fox-signature .spcanvas_WEAPP {
|
|
9785
9793
|
width: 100%;
|
|
9786
9794
|
height: 100%;
|
|
@@ -9789,8 +9797,4 @@
|
|
|
9789
9797
|
.fox-signature .spcanvas_WEAPP .spcanvas {
|
|
9790
9798
|
width: 100%;
|
|
9791
9799
|
}
|
|
9792
|
-
|
|
9793
|
-
.fox-signature .fox-signature-btn {
|
|
9794
|
-
margin-right: 15px;
|
|
9795
|
-
}
|
|
9796
9800
|
/*$vite$:1*/
|
package/dist/style.js
CHANGED