diff --git a/src/assets/css/main.css b/src/assets/css/main.css index 329e734a5..328d47d67 100644 --- a/src/assets/css/main.css +++ b/src/assets/css/main.css @@ -84,6 +84,10 @@ body { overflow-x: auto; } +.md-div details { + margin-bottom: 1rem; +} + .vote-bar { min-width: 5ch; margin-top: -6.5px; diff --git a/src/shared/components/post/post-listing.tsx b/src/shared/components/post/post-listing.tsx index a3c923066..c775e3947 100644 --- a/src/shared/components/post/post-listing.tsx +++ b/src/shared/components/post/post-listing.tsx @@ -245,7 +245,7 @@ export class PostListing extends Component { const url = post.url; // if direct video link or embedded video link - if (url && isVideo(url)) { + if ((url && isVideo(url)) || isVideo(post.embed_video_url ?? "")) { return (