Skip to content

Commit caeb01d

Browse files
committed
[Fix Bug] long namespace
about music namespace overflow
1 parent 0fde6b4 commit caeb01d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/Frameworks/Navigation/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,10 +137,10 @@ export default {
137137
@apply absolute flex flex-col left-8 top-2 w-auto h-full text-left;
138138
}
139139
.netease .name {
140-
@apply font-semibold inline-block;
140+
@apply font-semibold inline-block overflow-ellipsis overflow-hidden whitespace-nowrap max-w-xs;
141141
}
142142
.netease .namespace {
143-
@apply leading-4 font-thin text-sm;
143+
@apply leading-4 font-thin text-sm overflow-ellipsis overflow-hidden whitespace-nowrap max-w-xs;
144144
}
145145
146146
@media (prefers-color-scheme: dark) {

src/components/Leetcode/List/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ export default {
153153
else if (val <= this.totalPages && val != null && this.clickable) {
154154
this.$public.emit("notice", {
155155
type: "loading",
156-
msg: "🎈 正在从获取题目...",
156+
msg: "🎈 正在获取题目...",
157157
});
158158
this.clickable = false;
159159
this.$leetcode

0 commit comments

Comments
 (0)