You can set those values of CSS to limit text into line lines and ellipses, Overvloe has by default option and white-space and text-overflow use
Custom Property:
.one-line-paragraph {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}