Files
nexusphp/admin/src/styles/common.scss
2022-04-17 16:38:44 +08:00

27 lines
487 B
SCSS
Vendored

.nexus-table-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.nexus-help-text {
color: #aaa;
}
.pre-line {
white-space: pre-line;
}
.text-one-line{
display: inline-block;
white-space: nowrap;
width: 100%;
overflow: hidden;
text-overflow:ellipsis;
}
.text-two-line {
width:200px;
word-break:break-all;
display:-webkit-box;
-webkit-line-clamp:2;
-webkit-box-orient:vertical;
overflow:hidden;
}