Created page with "→CSS placed here will be applied to all skins: body.skin-holdfast .hf-upcoming-release-image { flex: 0 0 320px; overflow: hidden; } body.skin-holdfast .hf-upcoming-release-image img { width: 100%; height: 100%; object-fit: cover; display: block; }" |
No edit summary |
||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
body.skin-holdfast .hf-upcoming-release-image { | body.skin-holdfast .hf-upcoming-release-image { | ||
flex: 0 0 320px; | flex: 0 0 320px; | ||
max-width: 320px; | |||
overflow: hidden; | overflow: hidden; | ||
display: flex; | |||
align-items: stretch; | |||
} | } | ||
body.skin-holdfast .hf-upcoming-release-image img { | body.skin-holdfast .hf-upcoming-release-image img { | ||
width: 100%; | width: 100% !important; | ||
height: 100%; | height: 100% !important; | ||
object-fit: cover; | object-fit: cover; | ||
object-position: center; | |||
display: block; | display: block; | ||
} | } | ||
Revision as of 17:58, 25 June 2026
/* CSS placed here will be applied to all skins */
body.skin-holdfast .hf-upcoming-release-image {
flex: 0 0 320px;
max-width: 320px;
overflow: hidden;
display: flex;
align-items: stretch;
}
body.skin-holdfast .hf-upcoming-release-image img {
width: 100% !important;
height: 100% !important;
object-fit: cover;
object-position: center;
display: block;
}