diff options
author | James Taylor <user234683@users.noreply.github.com> | 2019-09-18 21:49:25 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2019-09-18 21:49:25 -0700 |
commit | 66b1159d362dde55d8bcaf35346916e97b87865f (patch) | |
tree | 4359b87caedf5d58c3196bc0c93f9555730ab241 /youtube/static | |
parent | 014da8d3ae842d217e67c1d11d19984187b96258 (diff) | |
download | yt-local-66b1159d362dde55d8bcaf35346916e97b87865f.tar.lz yt-local-66b1159d362dde55d8bcaf35346916e97b87865f.tar.xz yt-local-66b1159d362dde55d8bcaf35346916e97b87865f.zip |
Fix related videos title clipping
Diffstat (limited to 'youtube/static')
-rw-r--r-- | youtube/static/shared.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube/static/shared.css b/youtube/static/shared.css index 3ce7d4a..2393bef 100644 --- a/youtube/static/shared.css +++ b/youtube/static/shared.css @@ -237,7 +237,8 @@ body{ .item .title{ min-width: 0; - max-height:3.6em; + line-height:1.25em; + max-height:3.75em; overflow:hidden; color: var(--text-color); |