Additional styling tweaks

This commit is contained in:
Brooke Lord 2023-12-29 20:29:05 +13:00
parent 59e56c3b69
commit c2f5162e97
2 changed files with 8 additions and 2 deletions

View File

@ -134,6 +134,12 @@ a {
width: calc(100% - 6rem); width: calc(100% - 6rem);
} }
.image-table__image {
height: 4rem;
object-fit: cover;
width: 6rem;
}
.image-table__title { .image-table__title {
display: block; display: block;
} }

View File

@ -50,10 +50,10 @@
</xsl:variable> </xsl:variable>
<tr> <tr>
<td class="image-table__cell image-table__cell--image"> <td class="image-table__cell image-table__cell--image">
<img src="{\$imageURL}" width="60px"/> <img class="image-table__image" src="{\$imageURL}" width="60" height="40" />
</td> </td>
<td class="image-table__cell image-table__cell--text"> <td class="image-table__cell image-table__cell--text">
<xsl:value-of select="image:title"/><br/> <span class="image-table__title"><xsl:value-of select="image:title"/></span>
<a href="{\$imageURL}"> <a href="{\$imageURL}">
<xsl:value-of select="image:loc"/> <xsl:value-of select="image:loc"/>
</a> </a>