Fix border radius on video titles (#1032)

Video titles had inherited a border radius that was causing the top left of the text to be clipped off. I added a line to the CSS definitions in the Thumbnail component to set the border-radius to 0px, which should fix the issue.
This commit is contained in:
Conner McKay
2025-07-23 15:05:30 -04:00
committed by GitHub
parent 8cc4448d09
commit c52a43792d
@@ -270,6 +270,7 @@
.video-title {
word-wrap: break-word;
overflow: hidden;
border-radius: 0px;
}
.thumbnail-details {