Explicit logo size
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2022-03-14 23:57:27 +03:00
parent 2df13c117a
commit 2198e134d6
2 changed files with 8 additions and 0 deletions

View File

@@ -12,6 +12,8 @@ export default class Hero extends Component {
src={logo} src={logo}
alt='logo' alt='logo'
layout='responsive' layout='responsive'
width={500}
height={300}
/> />
</div> </div>
<div className={styles.text}> <div className={styles.text}>

View File

@@ -11,6 +11,12 @@
margin: auto; margin: auto;
} }
.logo {
img {
object-fit: contain;
}
}
.text { .text {
} }