hello-theme/assets/scss/theme/_archive.scss
2023-05-01 11:11:32 +03:00

24 lines
341 B
SCSS

/**
* Post item in archive pages
*/
.post {
.entry-title a {
text-decoration: none;
}
.wp-post-image {
width: 100%;
max-height: 500px;
object-fit: cover;
@media ( max-width: ( $screen-md - $screen-diff ) ) {
max-height: 400px;
}
@media ( max-width: ( $screen-xs - $screen-diff ) ) {
max-height: 300px;
}
}
}