form-driver 0.1.11 → 0.1.13
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/m3.css +12 -4
- package/dist/m3.js +1 -1
- package/es/m3.css +12 -4
- package/es/m3.js +12 -2
- package/lib/m3.css +12 -4
- package/lib/m3.js +12 -2
- package/package.json +5 -6
- package/src/ui/editor/basic/ARate.less +12 -5
- package/src/ui/editor/basic/ARate.tsx +3 -3
- package/src/ui/editor/basic/NPS.tsx +5 -5
package/dist/m3.css
CHANGED
|
@@ -139,12 +139,20 @@ table.M3_table tr:last-child td {
|
|
|
139
139
|
text-align: center;
|
|
140
140
|
padding-left: 15px;
|
|
141
141
|
padding-right: 15px;
|
|
142
|
+
display: flex;
|
|
142
143
|
}
|
|
143
|
-
.m3-nps-wrapper .m3-nps-tip
|
|
144
|
-
|
|
144
|
+
.m3-nps-wrapper .m3-nps-tip .m3-nps-tip-left {
|
|
145
|
+
flex: 1;
|
|
146
|
+
text-align: left;
|
|
145
147
|
}
|
|
146
|
-
.m3-nps-wrapper .m3-nps-tip
|
|
147
|
-
|
|
148
|
+
.m3-nps-wrapper .m3-nps-tip .m3-nps-tip-center {
|
|
149
|
+
flex: 1;
|
|
150
|
+
padding: 0 10px;
|
|
151
|
+
text-align: center;
|
|
152
|
+
}
|
|
153
|
+
.m3-nps-wrapper .m3-nps-tip .m3-nps-tip-right {
|
|
154
|
+
flex: 1;
|
|
155
|
+
text-align: right;
|
|
148
156
|
}
|
|
149
157
|
.m3-nps-wrapper .ant-rate {
|
|
150
158
|
display: flex !important;
|