Skip to content

Commit

Permalink
Merge pull request #954 from equalizedigital/feature/local-dev-branch
Browse files Browse the repository at this point in the history
Feature/local dev branch
  • Loading branch information
tronsymphony authored Nov 14, 2023
2 parents aa3d749 + ee5b447 commit 89ab2c4
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 9 deletions.
2 changes: 1 addition & 1 deletion assets/css/editor-style.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/css/main.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/css/main.css.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion assets/scss/blocks/team-hightlight.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
}

.team-hightlight-block-container-team-hightlight-member__photo img{
border-radius: 10px;
@include media("<tablet") {
height: 33vw;
}
Expand All @@ -30,7 +31,7 @@
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 28px;
line-height: 1.4;
text-align: left;
}

Expand Down
6 changes: 5 additions & 1 deletion assets/scss/partials/_editor-class.scss
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@
padding: 0;

@include media(">tablet") {
columns: 2;
display: grid;
grid-template-columns: repeat(2, 1fr);
}

li {
Expand Down Expand Up @@ -151,6 +152,9 @@
blockquote{
&.wp-block-quote {
margin-bottom: 20px;
p {
text-align: left;
}
}
}
}
Expand Down
3 changes: 2 additions & 1 deletion assets/scss/partials/_navigation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ header.site-header {

.site-header {
position: relative;
z-index: 100;

@include media("<1070px") {
&:after {
Expand All @@ -61,7 +62,7 @@ header.site-header {

&.scroll_active {
@include media("<1070px") {
z-index: 1;
// z-index: 1;
}
}

Expand Down
5 changes: 4 additions & 1 deletion assets/scss/partials/_singular.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1460,7 +1460,7 @@ section.refinance_lender_section {
}

tr th {
font-size: 14px;
font-size: 18px;
}

tr .td_content {
Expand Down Expand Up @@ -1878,6 +1878,9 @@ section.refinance_lender_section {

html {
scroll-behavior: smooth;
&.overflow-hidden{
overflow: hidden;
}
}

// Single Related Posts
Expand Down
4 changes: 2 additions & 2 deletions template-parts/blocks/team-hightlight/template.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
<?php
$thumbnail_id = get_post_thumbnail_id( $member->ID );
if ( ! empty( $member->ID ) ) {
$image_url = wp_get_attachment_image_src( $thumbnail_id, 'full' );
$image_url = wp_get_attachment_image_src( $thumbnail_id, 'large' );
$featured_image_url = $image_url[0];
if ( ! empty( $featured_image_url ) ) {
echo wp_kses_post( '<img src="' . $featured_image_url . '" alt="' . get_the_title( $member->ID ) . '">' );
Expand Down Expand Up @@ -164,7 +164,7 @@
<?php
$thumbnail_id = get_post_thumbnail_id( $member->ID );
if ( $thumbnail_id ) {
$image_url = wp_get_attachment_image_src( $thumbnail_id, 'large' );
$image_url = wp_get_attachment_image_src( $thumbnail_id, 'medium-large' );
$featured_image_url = $image_url[0];
echo wp_kses_post( '<img src="' . $featured_image_url . '" alt="' . get_the_title( $member->ID ) . '">' );
}
Expand Down

0 comments on commit 89ab2c4

Please sign in to comment.