Fix: Properly align accordion panel borders to prevent overflow

This commit is contained in:
Marcus Quinn
2025-03-24 23:19:06 +00:00
parent 69623d2660
commit f03da91142

View File

@ -1072,9 +1072,10 @@ body.wp-admin .button.pricing-button:hover,
padding: 15px 0; padding: 15px 0;
margin: 0; margin: 0;
background-color: #f8f8f8; background-color: #f8f8f8;
border: 1px solid #eee; border-top: 1px solid #ddd;
border-top: none; width: calc(100% - 2px); /* Account for parent border */
width: 100%; margin-left: 1px; /* Center within parent borders */
box-sizing: border-box;
} }
.wp-allstars-setting-row { .wp-allstars-setting-row {