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

View File

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

View File

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