mirror of
https://gh.wpcy.net/https://github.com/elementor/hello-theme.git
synced 2026-04-25 11:52:21 +08:00
26 lines
422 B
SCSS
26 lines
422 B
SCSS
/**
|
|
* Post item in archive pages
|
|
*/
|
|
|
|
@use "../reset/variables" as variables;
|
|
|
|
.post {
|
|
|
|
.entry-title a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.wp-post-image {
|
|
width: 100%;
|
|
max-height: 500px;
|
|
object-fit: cover;
|
|
|
|
@media ( max-width: ( variables.$screen-md - variables.$screen-diff ) ) {
|
|
max-height: 400px;
|
|
}
|
|
|
|
@media ( max-width: ( variables.$screen-xs - variables.$screen-diff ) ) {
|
|
max-height: 300px;
|
|
}
|
|
}
|
|
}
|