fix: add auto width to marketplace icons

This commit is contained in:
danil
2024-05-02 18:32:06 +03:00
parent d7c9efa910
commit 31ef122d22
3 changed files with 8 additions and 4 deletions

2
.gitignore vendored
View File

@@ -5,7 +5,7 @@
/.pnp /.pnp
.pnp.js .pnp.js
.yarn/install-state.gz .yarn/install-state.gz
.idea
# testing # testing
/coverage /coverage

View File

@@ -56,6 +56,10 @@
z-index: 2; z-index: 2;
} }
.marketPlace {
width: auto;
}
@media screen and (min-width: 641px) { @media screen and (min-width: 641px) {
.infoHeading { .infoHeading {
font-size: 3.5rem; font-size: 3.5rem;

View File

@@ -30,9 +30,9 @@ export function HeroSection() {
</div> </div>
</Container> </Container>
<div className={styles.marketPlaces}> <div className={styles.marketPlaces}>
<Image src={ozonLogo} alt={'Логотип озона'}/> <Image className={styles.marketPlace} src={ozonLogo} alt={'Логотип озона'}/>
<Image src={wildBerriesLogo} alt={'Логотип вайлдберис'}/> <Image className={styles.marketPlace} src={wildBerriesLogo} alt={'Логотип вайлдберис'}/>
<Image src={yandexMarketLogo} alt={'Логотип яндекс маркета'}/> <Image className={styles.marketPlace} src={yandexMarketLogo} alt={'Логотип яндекс маркета'}/>
</div> </div>
</section> </section>
); );