Skip to content

Commit

Permalink
fix: adjust some deep selectors
Browse files Browse the repository at this point in the history
  • Loading branch information
dyersituations committed Aug 15, 2024
1 parent 7f2f204 commit 15f31cb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/components/Kv/KvLightbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ export default {
overflow: hidden;
// dynamically added div from vue-focus-lock
:deep(& > [data-lock]) {
:deep(> [data-lock]) {
width: 100%;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Payment/BraintreeDropInInterface.vue
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ $border-width: 1px;
// Use [data-braintree-id=""] selectors whenever possible as
// Braintree guarantees that these will not be easily changed.
#dropin-container {
:deep {
:deep(*) {
// Main DropIn
.braintree-dropin {
font-family: inherit;
Expand Down
10 changes: 5 additions & 5 deletions src/components/Thanks/ThanksLayoutV2.vue
Original file line number Diff line number Diff line change
Expand Up @@ -425,9 +425,9 @@ export default {
width: 100%;
display: inline-block;
:deep(&) .monthly-good-cta,
:deep(&) .checkout-receipt,
:deep(&) .share {
:deep(.monthly-good-cta),
:deep(.checkout-receipt),
:deep(.share) {
text-align: left;
&__headline {
Expand All @@ -443,7 +443,7 @@ export default {
}
&__content-area--share {
:deep(&) {
:deep(*) {
$loan-circle-size: rem-calc(70);
$loan-circle-margin: 1rem;
$loan-triangle-size: rem-calc(12);
Expand Down Expand Up @@ -565,7 +565,7 @@ export default {
}
&__content-area--receipt {
:deep(&) {
:deep(*) {
.checkout-receipt {
padding: 1.5rem;
}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/LandingPages/CorporateCampaign/CCLandingPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1745,7 +1745,7 @@ export default {
width: 58.75rem;
}

:deep(&) {
:deep(*) {
.full-details-link,
.close-button-wrapper,
.info-panel a,
Expand Down

0 comments on commit 15f31cb

Please sign in to comment.