1
0
Fork 0
mirror of https://github.com/elementor/hello-theme.git synced 2026-08-01 16:00:20 +08:00
hello-theme/dev/scss/theme/_archive.scss
2026-06-20 20:20:30 +03:00

24 lines
311 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 (--hello-screen-md-and-below) {
max-height: 400px;
}
@media (--hello-screen-xs-and-below) {
max-height: 300px;
}
}
}