Fix overflow issues in settings popovers

This commit is contained in:
Andrew Kingston 2024-06-26 15:10:20 +01:00
parent 6e9939f441
commit 4042160003
No known key found for this signature in database
2 changed files with 9 additions and 0 deletions

View File

@ -84,6 +84,8 @@
showPopover={drawers.length === 0}
clickOutsideOverride={drawers.length > 0}
maxHeight={600}
minWidth={360}
maxWidth={360}
offset={18}
>
<span class="popover-wrap">

View File

@ -99,4 +99,11 @@
);
align-items: center;
}
.type-icon span {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 0;
flex: 1 1 auto;
}
</style>