Prevent treeview node text from overflowing

Test: Visual
Change-Id: Ib7f0592727a0de511784a1b8f935d0b12849e4b5
This commit is contained in:
Pablo Gamito
2020-08-04 12:58:23 +01:00
parent a07b77cf5f
commit ada63ef3aa

View File

@@ -550,8 +550,20 @@ export default {
color: #3f51b5; color: #3f51b5;
} }
.description {
display: flex;
flex: 1 0 0;
}
.description > div {
display: flex;
flex: 1 0 0;
}
.description span { .description span {
white-space: normal; overflow-wrap: break-word;
flex: 1 0 0;
width: 0;
} }
</style> </style>