1👍
✅
one solution you could use in css is
videoTitleStyle{
maxWidth: 30%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
this is one way to hide the text that extends the maxWidht
Source:stackexchange.com