mirror of
https://gh.wpcy.net/https://github.com/elementor/hello-theme.git
synced 2026-04-30 15:09:17 +08:00
24 lines
341 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|