Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 22 additions & 4 deletions assets/dash.css
Original file line number Diff line number Diff line change
Expand Up @@ -5073,7 +5073,7 @@ padding: 0 50px;
#evo-section-one,
#evo-section-three,
#evo-section-four {
max-width: 90%;
max-width: 1240px;
margin: auto;
}

Expand Down Expand Up @@ -5482,14 +5482,14 @@ padding: 0 50px;
}

#app-section-three {
background: #F7F9FA;
background: #F7F9FA !important;
padding: 80px 100px 0;
border-radius: 40px;
align-items: flex-start !important;
}

#app-section-three.dashspend-section-one {
padding: 100px !important;
padding: 100px;
margin-top: 30px;
}

Expand Down Expand Up @@ -5766,6 +5766,18 @@ section#app-section-five:after {
#app-section-one.desktop .container.block-pad-v {
max-width: 90%;
}
#app-section-two,
#app-section-three,
#app-section-four,
#app-section-six,
#app-section-seven,
#app-section-nine,
#app-section-video,
#evo-section-one,
#evo-section-three,
#evo-section-four {
max-width: 90%;
}
}


Expand Down Expand Up @@ -5800,7 +5812,13 @@ section#app-section-five:after {
padding: 40px 0 0 0;
}

#app-section-three .container.block-pad-v, #app-section-three.dashspend-section-one .container.block-pad-v {
#app-section-three .col-lg-6.col-right.order-lg-2 {
flex: 0 0 100%;
}



#app-section-three, #app-section-three {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Remove duplicate selector.

The selector #app-section-three appears twice in the same rule. This is redundant and should be simplified to a single instance.

🔎 Proposed fix
-  #app-section-three, #app-section-three {
+  #app-section-three {
     max-width: 90%;
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
#app-section-three, #app-section-three {
#app-section-three {
max-width: 90%;
🤖 Prompt for AI Agents
In assets/dash.css around line 5821, the selector list repeats the same ID twice
("#app-section-three, #app-section-three"), which is redundant; edit the
selector to contain a single instance of #app-section-three (remove the
duplicate), ensure spacing/commas are correct and the block remains valid, then
run the CSS linter/formatter to confirm there are no leftover syntax issues.

max-width: 90%;
padding: 10px 30px 0;
overflow: hidden;
Expand Down
2 changes: 1 addition & 1 deletion functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ function theme_styles()

// Remove time() and replace with static version number after strophy finishes fixing CSS

wp_register_style('dashcss', get_template_directory_uri() . '/assets/dash.css', array(), '1.81', 'all');
wp_register_style('dashcss', get_template_directory_uri() . '/assets/dash.css', array(), '1.82', 'all');
wp_enqueue_style('dashcss');

}
Expand Down