13 lines
293 B
CSS
13 lines
293 B
CSS
.popup {
|
|
max-width: 300px !important;
|
|
/* max-height: 300px !important; */
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
& span {
|
|
display: block;
|
|
max-height: 200px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
}
|