Fix elipses when text is overflowing in HighlightSidebar

Resolves MS-897 #complete
This commit is contained in:
Ramon Wenger 2024-03-11 11:53:00 +01:00
parent 7af5f07137
commit a1f06f130e
1 changed files with 3 additions and 1 deletions

View File

@ -174,7 +174,9 @@ const isOverflowing = computed(() => {
&::after {
content: '...';
position: absolute;
right: 10px;
background-color: inherit;
padding-right: 30px;
right: 0;
bottom: 0;
}
}