fix: add auto width to marketplace icons
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -5,7 +5,7 @@
|
||||
/.pnp
|
||||
.pnp.js
|
||||
.yarn/install-state.gz
|
||||
|
||||
.idea
|
||||
# testing
|
||||
/coverage
|
||||
|
||||
|
||||
@@ -56,6 +56,10 @@
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.marketPlace {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 641px) {
|
||||
.infoHeading {
|
||||
font-size: 3.5rem;
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user