Skip to content

Commit

Permalink
Fix: styling the tertiary link.
Browse files Browse the repository at this point in the history
  • Loading branch information
ankitrox committed Oct 25, 2024
1 parent da1a10e commit 690067d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const AccountDetails = () => {
<>
<p>{ google.email }</p>
<p>
{ googleMCAccount.id > 0 &&
{ googleMCAccount?.id > 0 &&
sprintf(
// Translators: %s is the Merchant Center ID
__(
Expand All @@ -34,7 +34,7 @@ const AccountDetails = () => {
) }
</p>
<p>
{ googleAdsAccount.id > 0 &&
{ googleAdsAccount?.id > 0 &&
sprintf(
// Translators: %s is the Google Ads ID
__( 'Google Ads ID: %s', 'google-listings-and-ads' ),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
.gla-google-combo-service-account-card__footer {
border: 0;
padding: 0;

.app-button, .components-button.is-tertiary:hover:not(:disabled,[aria-disabled=true]) {

Check failure on line 23 in js/src/components/google-combo-account-card/connect-account-card.scss

View workflow job for this annotation

GitHub Actions / Lint CSS

Expected quotes around "true" (selector-attribute-quotes)

Check failure on line 23 in js/src/components/google-combo-account-card/connect-account-card.scss

View workflow job for this annotation

GitHub Actions / Lint CSS

Expected newline after "," (selector-list-comma-newline-after)
background: none;
padding-left: 0;
}
}

.gla-connected-icon-label {
Expand Down

0 comments on commit 690067d

Please sign in to comment.