Skip to content

Commit 9610833

Browse files
committed
Fix: Remove aspect ratio style from feature image in PageHeader component
Signed-off-by: Lee Calcote <lee.calcote@layer5.io>
1 parent 4b36d64 commit 9610833

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/reusecore/PageHeader/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const PageHeader = ({ category, title, img, feedlink, subtitle, author, thumbnai
4545
return (
4646
<PageHeaderWrapper>
4747
<div className="page-header">
48-
{ thumbnail && <div className="feature-image" style={{ aspectRatio: "16/9", minHeight: "250px" }}>
48+
{ thumbnail && <div className="feature-image" style={{ minHeight: "250px" }}>
4949
<Image {...thumbnail} imgStyle={{ objectFit: "contain" }} alt={title}/>
5050
</div>}
5151
<h1 className="page-title" >{title} <sup className="supscript">{superscript}</sup>{ img && feedlink && (<a href= {feedlink} target="_blank" rel="noreferrer"> <img src={img} alt="RSS Feed"/> </a>) } </h1>

0 commit comments

Comments
 (0)