mirror of
https://github.com/elementor/hello-theme.git
synced 2026-08-01 16:00:20 +08:00
24 lines
311 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|