w-ui-v1 1.1.22 → 1.1.23
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/w-menu/w-menu.vue +8 -2
package/package.json
CHANGED
package/w-menu/w-menu.vue
CHANGED
|
@@ -228,8 +228,8 @@ function queryList() {
|
|
|
228
228
|
color: #4D81F1;
|
|
229
229
|
width: 55px;
|
|
230
230
|
overflow: hidden;
|
|
231
|
-
text-overflow: ellipsis;
|
|
232
|
-
white-space:
|
|
231
|
+
// text-overflow: ellipsis;
|
|
232
|
+
white-space: pre-wrap;
|
|
233
233
|
// white-space: pre-wrap;
|
|
234
234
|
// text-align: left;
|
|
235
235
|
}
|
|
@@ -253,4 +253,10 @@ function queryList() {
|
|
|
253
253
|
// background-color: #F6F7FB;
|
|
254
254
|
background: linear-gradient(to top, #F6F7FB 0%, #2c5def 100%);
|
|
255
255
|
}
|
|
256
|
+
|
|
257
|
+
:deep(.wd-grid){
|
|
258
|
+
float: unset;
|
|
259
|
+
display: flex;
|
|
260
|
+
flex-wrap: wrap;
|
|
261
|
+
}
|
|
256
262
|
</style>
|