Feature: proxy name can display with 2 lines

This commit is contained in:
Dreamacro 2019-12-29 21:31:42 +08:00
parent d1ab267792
commit 9caf8d85c8

View File

@ -20,14 +20,14 @@
} }
.proxy-name { .proxy-name {
max-height: 30px; display: -webkit-box;
margin-top: 10px; margin-top: 10px;
color: $color-primary-darken; color: $color-primary-darken;
font-size: 10px; font-size: 10px;
overflow: hidden; overflow: hidden;
word-break: keep-all; word-break: break-word;
white-space: nowrap; -webkit-line-clamp: 2;
text-overflow: ellipsis; -webkit-box-orient: vertical;
} }
.proxy-delay { .proxy-delay {