fix(directory): fixed text overflow

This commit is contained in:
Haoyu Xu
2023-10-14 13:02:29 -04:00
parent d2b1cf4d96
commit 670eb2c03b
3 changed files with 10 additions and 3 deletions

View File

@@ -161,6 +161,7 @@
transition: transform cubic-bezier(0.65, 0.05, 0.36, 1) 0.3s;
.option {
white-space: nowrap;
pointer-events: none;
position: relative;
transform: translate3d(0, 0, 1px);
@@ -303,3 +304,8 @@
}
}
}
.no-overflow {
overflow: hidden;
text-overflow: ellipsis;
}