docs(aio): fix sizing of marketing doc images
This commit ensures that all the images in the marketing docs are correcly sized. Related to #16600
This commit is contained in:
parent
03513e9d70
commit
5cf64266f8
|
@ -24,7 +24,7 @@
|
||||||
|
|
||||||
<div class="promo-img-container promo-1">
|
<div class="promo-img-container promo-1">
|
||||||
<div>
|
<div>
|
||||||
<img src="assets/images/home/responsive-framework.svg" alt="responsive framework">
|
<img height="222" src="assets/images/home/responsive-framework.svg" alt="responsive framework">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@
|
||||||
|
|
||||||
<div class="promo-img-container promo-2">
|
<div class="promo-img-container promo-2">
|
||||||
<div>
|
<div>
|
||||||
<img src="assets/images/home/speed-performance.svg" alt="speed and performance">
|
<img height="222" src="assets/images/home/speed-performance.svg" alt="speed and performance">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div><!-- Group 3-->
|
</div><!-- Group 3-->
|
||||||
|
|
|
@ -129,7 +129,7 @@
|
||||||
<a href="assets/images/logos/angularjs/AngularJS-Shield.svg" title="AngularJS logo">
|
<a href="assets/images/logos/angularjs/AngularJS-Shield.svg" title="AngularJS logo">
|
||||||
original AngularJS logo</a> / icon, and not the Angular icon.</p>
|
original AngularJS logo</a> / icon, and not the Angular icon.</p>
|
||||||
|
|
||||||
<img src="assets/images/logos/angularjs/AngularJS-Shield.svg" alt="AngularJS Logo" style="margin-left:20px;" >
|
<img src="assets/images/logos/angularjs/AngularJS-Shield.svg" alt="AngularJS Logo" style="margin-left:20px;" height="128" width="128">
|
||||||
|
|
||||||
<h3>Angular Material</h3>
|
<h3>Angular Material</h3>
|
||||||
|
|
||||||
|
|
|
@ -39,6 +39,7 @@
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
width: 128px;
|
width: 128px;
|
||||||
|
height: 128px;
|
||||||
background-color: #34474F;
|
background-color: #34474F;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -65,6 +66,7 @@
|
||||||
|
|
||||||
img {
|
img {
|
||||||
width: 128px;
|
width: 128px;
|
||||||
|
height: 128px;
|
||||||
margin-bottom: $unit * 2;
|
margin-bottom: $unit * 2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue