agilebuilder-ui 1.1.8 → 1.1.9
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 +1 -1
- package/src/styles/index.scss +8 -2
package/package.json
CHANGED
package/src/styles/index.scss
CHANGED
|
@@ -175,7 +175,11 @@ body .el-table colgroup.gutter {
|
|
|
175
175
|
overflow: hidden;
|
|
176
176
|
transition: var(--el-transition-duration);
|
|
177
177
|
box-shadow: var(--el-box-shadow-light);
|
|
178
|
-
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.amb-widget-flex {
|
|
181
|
+
display: flex !important;
|
|
182
|
+
flex-direction: column
|
|
179
183
|
}
|
|
180
184
|
|
|
181
185
|
.amb-widget-chart-header {
|
|
@@ -184,13 +188,15 @@ body .el-table colgroup.gutter {
|
|
|
184
188
|
display: flex;
|
|
185
189
|
min-height: 36px;
|
|
186
190
|
}
|
|
191
|
+
|
|
187
192
|
.amb-widget-chart-header-item {
|
|
188
193
|
display: flex;
|
|
189
194
|
align-items: center;
|
|
190
195
|
}
|
|
196
|
+
|
|
191
197
|
.amb-widget-chart-header-center {
|
|
192
198
|
flex-grow: 1;
|
|
193
199
|
text-align: center;
|
|
194
200
|
vertical-align: middle;
|
|
195
201
|
justify-content: center;
|
|
196
|
-
}
|
|
202
|
+
}
|