fix: add auto width to marketplace icons
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -5,7 +5,7 @@
|
|||||||
/.pnp
|
/.pnp
|
||||||
.pnp.js
|
.pnp.js
|
||||||
.yarn/install-state.gz
|
.yarn/install-state.gz
|
||||||
|
.idea
|
||||||
# testing
|
# testing
|
||||||
/coverage
|
/coverage
|
||||||
|
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user