Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
wpxhouston committed Oct 5, 2023
2 parents ef21f31 + cbdee25 commit 33243ea
Show file tree
Hide file tree
Showing 14 changed files with 66 additions and 14,747 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.

2 changes: 1 addition & 1 deletion assets/js/global-min.js

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion assets/js/src/global.js
Original file line number Diff line number Diff line change
Expand Up @@ -931,8 +931,11 @@ document.addEventListener('DOMContentLoaded', function() {
const controlledElementId = event.target.getAttribute('aria-controls');
const targetElement = document.getElementById(controlledElementId);
if(targetElement) {
event.target.classList.toggle('active_btn'); // Replace 'your-class-name' with the class you want to add
event.target.classList.toggle('active_btn');
targetElement.toggleAttribute('hidden');
const isExpanded = event.target.getAttribute('aria-expanded') === 'true';
event.target.setAttribute('aria-expanded', !isExpanded);
event.target.innerHTML = isExpanded ? 'More Information <span><svg width="13" height="8" viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6.50008 6.50008L12.0002 1" stroke="#82BC46"/></svg></span>' : 'Less Information<span><svg width="13" height="8" viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6.50008 6.50008L12.0002 1" stroke="#82BC46"/></svg></span>';
}
});

Expand Down
3 changes: 3 additions & 0 deletions assets/scss/blocks/calculator-signup.scss
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@
grid-template-columns: 30px 1fr;
gap: 20px;
color: #FFF;
a{
color: white;
}
}

.calculator-signup-container-content-list-item h3 {
Expand Down
1 change: 1 addition & 0 deletions assets/scss/blocks/detailed-links.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
padding: 45px 38px;
border-radius: 10px;
max-width: 380px;
margin: 0 auto;
&_text {

text-align: center;
Expand Down
3 changes: 1 addition & 2 deletions assets/scss/blocks/media-reviews-global.scss
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
.media-reviews-global-block {
background: #F7F7F7;
padding: 50px 0;
margin: 50px 0 0;
margin: 0 0;
color: black;
@include media(">tablet") {
// padding: 153px 0 0;
margin: 0;
}
&-purple{
Expand Down
6 changes: 6 additions & 0 deletions assets/scss/partials/_blocks-base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,14 @@ input {
}
}



.wpforms-container {

.wpforms-form .wpforms-list-2-columns ul li {
width: auto!important;
}

.wpforms-form {
textarea {
min-height: 250px;
Expand Down
4 changes: 2 additions & 2 deletions assets/scss/partials/_singular.scss
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ img.wprm-comment-rating {

.contact-hero-container__image {
position: relative;
min-height: 240px;
min-height: 154px;
max-width: 450px;
display: flex;

Expand Down Expand Up @@ -551,7 +551,7 @@ img.wprm-comment-rating {
line-height: 28px;

@include media(">tablet") {
padding: 200px 0 0;
padding: 270px 0 0;
}

p {
Expand Down
Loading

0 comments on commit 33243ea

Please sign in to comment.