diff --git a/src/components/ManageListingCard/ManageListingCard.css b/src/components/ManageListingCard/ManageListingCard.css index ac84e5df..27a7f02e 100644 --- a/src/components/ManageListingCard/ManageListingCard.css +++ b/src/components/ManageListingCard/ManageListingCard.css @@ -164,6 +164,7 @@ } .menuItem { + @apply --marketplaceLinkStyles; @apply --marketplaceH5FontStyles; color: var(--matterColorLight); font-weight: var(--fontWeightMedium); @@ -269,6 +270,7 @@ } .title { + @apply --marketplaceLinkStyles; /* Font */ @apply --marketplaceH3FontStyles; color: var(--matterColor); diff --git a/src/components/ManageListingCard/ManageListingCard.js b/src/components/ManageListingCard/ManageListingCard.js index 4c05e100..6d2bd786 100644 --- a/src/components/ManageListingCard/ManageListingCard.js +++ b/src/components/ManageListingCard/ManageListingCard.js @@ -219,7 +219,7 @@ export const ManageListingCardComponent = props => { { event.preventDefault(); event.stopPropagation(); @@ -315,7 +315,7 @@ export const ManageListingCardComponent = props => {
{ event.preventDefault(); event.stopPropagation(); diff --git a/src/components/ManageListingCard/__snapshots__/ManageListingCard.test.js.snap b/src/components/ManageListingCard/__snapshots__/ManageListingCard.test.js.snap index 4105f5d5..ef138e71 100644 --- a/src/components/ManageListingCard/__snapshots__/ManageListingCard.test.js.snap +++ b/src/components/ManageListingCard/__snapshots__/ManageListingCard.test.js.snap @@ -78,8 +78,8 @@ exports[`ManageListingCard matches snapshot 1`] = ` rootClassName="" >
{ const email = user.id ? {user.attributes.email} : ''; const resendEmailLink = ( - + ); diff --git a/src/components/ModalMissingInformation/ModalMissingInformation.css b/src/components/ModalMissingInformation/ModalMissingInformation.css index a0c4d42e..03241e1b 100644 --- a/src/components/ModalMissingInformation/ModalMissingInformation.css +++ b/src/components/ModalMissingInformation/ModalMissingInformation.css @@ -20,6 +20,7 @@ } .helperLink { + @apply --marketplaceLinkStyles; @apply --marketplaceModalHelperLink; } diff --git a/src/components/SearchFiltersPanel/SearchFiltersPanel.css b/src/components/SearchFiltersPanel/SearchFiltersPanel.css index 1b650243..939667c3 100644 --- a/src/components/SearchFiltersPanel/SearchFiltersPanel.css +++ b/src/components/SearchFiltersPanel/SearchFiltersPanel.css @@ -16,6 +16,7 @@ } .resetAllButton { + @apply --marketplaceLinkStyles; @apply --marketplaceH5FontStyles; font-weight: var(--fontWeightMedium); color: var(--matterColorAnti); @@ -33,6 +34,7 @@ } .cancelButton { + @apply --marketplaceLinkStyles; @apply --marketplaceH5FontStyles; font-weight: var(--fontWeightMedium); color: var(--matterColorAnti); @@ -50,6 +52,7 @@ } .applyButton { + @apply --marketplaceLinkStyles; @apply --marketplaceH5FontStyles; font-weight: var(--fontWeightMedium); diff --git a/src/components/SearchFiltersPanel/SearchFiltersPanel.js b/src/components/SearchFiltersPanel/SearchFiltersPanel.js index d70dc8b6..4a1946c6 100644 --- a/src/components/SearchFiltersPanel/SearchFiltersPanel.js +++ b/src/components/SearchFiltersPanel/SearchFiltersPanel.js @@ -158,13 +158,13 @@ class SearchFiltersPanelComponent extends Component {
{/* Add filters here */}
- + - + - +
diff --git a/src/components/TabNavHorizontal/TabNavHorizontal.css b/src/components/TabNavHorizontal/TabNavHorizontal.css index 6ad0c4fb..880c3909 100644 --- a/src/components/TabNavHorizontal/TabNavHorizontal.css +++ b/src/components/TabNavHorizontal/TabNavHorizontal.css @@ -23,6 +23,7 @@ } .tabContent { + @apply --marketplaceLinkStyles; display: flex; flex-direction: column; justify-content: flex-end; diff --git a/src/components/TabNavHorizontal/TabNavHorizontal.js b/src/components/TabNavHorizontal/TabNavHorizontal.js index 74cf0298..764fefb8 100644 --- a/src/components/TabNavHorizontal/TabNavHorizontal.js +++ b/src/components/TabNavHorizontal/TabNavHorizontal.js @@ -43,7 +43,7 @@ const Tab = props => { return (
{isButton ? ( - + {text} ) : ( diff --git a/src/components/TopbarDesktop/TopbarDesktop.css b/src/components/TopbarDesktop/TopbarDesktop.css index 93729a89..a9459f92 100644 --- a/src/components/TopbarDesktop/TopbarDesktop.css +++ b/src/components/TopbarDesktop/TopbarDesktop.css @@ -304,6 +304,7 @@ } .logoutButton { + @apply --marketplaceLinkStyles; /* Font is specific to this component */ @apply --marketplaceH4FontStyles; font-size: 14px; diff --git a/src/components/TopbarDesktop/TopbarDesktop.js b/src/components/TopbarDesktop/TopbarDesktop.js index 43fddd9b..54f38347 100644 --- a/src/components/TopbarDesktop/TopbarDesktop.js +++ b/src/components/TopbarDesktop/TopbarDesktop.js @@ -100,7 +100,7 @@ const TopbarDesktop = props => { - + diff --git a/src/components/TopbarMobileMenu/TopbarMobileMenu.css b/src/components/TopbarMobileMenu/TopbarMobileMenu.css index 1c354e08..52e2c2fd 100644 --- a/src/components/TopbarMobileMenu/TopbarMobileMenu.css +++ b/src/components/TopbarMobileMenu/TopbarMobileMenu.css @@ -55,6 +55,7 @@ } .logoutButton { + @apply --marketplaceLinkStyles; /* Logout font is smaller and gray since the action is not recommended. */ @apply --marketplaceH3FontStyles; color: var(--matterColorAnti); diff --git a/src/components/TopbarMobileMenu/TopbarMobileMenu.js b/src/components/TopbarMobileMenu/TopbarMobileMenu.js index a8671635..8c1ed145 100644 --- a/src/components/TopbarMobileMenu/TopbarMobileMenu.js +++ b/src/components/TopbarMobileMenu/TopbarMobileMenu.js @@ -81,7 +81,7 @@ const TopbarMobileMenu = props => { - + + ); @@ -86,7 +86,7 @@ const UserCard = props => { const separator = isCurrentUser ? null : ; const contact = ( - + ); diff --git a/src/containers/AuthenticationPage/AuthenticationPage.css b/src/containers/AuthenticationPage/AuthenticationPage.css index 104fe989..20927b58 100644 --- a/src/containers/AuthenticationPage/AuthenticationPage.css +++ b/src/containers/AuthenticationPage/AuthenticationPage.css @@ -122,6 +122,7 @@ /* Helper links */ .modalHelperLink { + @apply --marketplaceLinkStyles; @apply --marketplaceModalHelperLink; } diff --git a/src/containers/AuthenticationPage/AuthenticationPage.js b/src/containers/AuthenticationPage/AuthenticationPage.js index b9e711cd..783b7759 100644 --- a/src/containers/AuthenticationPage/AuthenticationPage.js +++ b/src/containers/AuthenticationPage/AuthenticationPage.js @@ -157,7 +157,7 @@ export class AuthenticationPageComponent extends Component { const email = {user.attributes.email}; const resendEmailLink = ( - + ); diff --git a/src/containers/ListingPage/ListingPage.css b/src/containers/ListingPage/ListingPage.css index 64ef1cb6..a5f9550d 100644 --- a/src/containers/ListingPage/ListingPage.css +++ b/src/containers/ListingPage/ListingPage.css @@ -383,6 +383,7 @@ } .contactLink { + @apply --marketplaceLinkStyles; @apply --marketplaceH4FontStyles; margin: 0; } diff --git a/src/containers/ListingPage/SectionHeading.js b/src/containers/ListingPage/SectionHeading.js index 34e1be65..90b2d954 100644 --- a/src/containers/ListingPage/SectionHeading.js +++ b/src/containers/ListingPage/SectionHeading.js @@ -45,7 +45,7 @@ const SectionHeading = props => { {showContactUser ? ( - + diff --git a/src/containers/PasswordRecoveryPage/PasswordRecoveryPage.css b/src/containers/PasswordRecoveryPage/PasswordRecoveryPage.css index 16c043e8..6d500a16 100644 --- a/src/containers/PasswordRecoveryPage/PasswordRecoveryPage.css +++ b/src/containers/PasswordRecoveryPage/PasswordRecoveryPage.css @@ -52,6 +52,7 @@ } .helperLink { + @apply --marketplaceLinkStyles; @apply --marketplaceModalHelperLink; } diff --git a/src/containers/PasswordRecoveryPage/PasswordRecoveryPage.js b/src/containers/PasswordRecoveryPage/PasswordRecoveryPage.js index 48e923de..0f2ff664 100644 --- a/src/containers/PasswordRecoveryPage/PasswordRecoveryPage.js +++ b/src/containers/PasswordRecoveryPage/PasswordRecoveryPage.js @@ -45,13 +45,13 @@ export const PasswordRecoveryPageComponent = props => { }); const resendEmailLink = ( - onSubmitEmail(submittedEmail)}> + onSubmitEmail(submittedEmail)}> ); const fixEmailLink = ( - + ); diff --git a/src/forms/PayoutDetailsForm/PayoutDetailsFormCompany.js b/src/forms/PayoutDetailsForm/PayoutDetailsFormCompany.js index 65cf73f7..a8885c4c 100644 --- a/src/forms/PayoutDetailsForm/PayoutDetailsFormCompany.js +++ b/src/forms/PayoutDetailsForm/PayoutDetailsFormCompany.js @@ -193,7 +193,7 @@ const PayoutDetailsFormCompanyComponent = ({ fieldRenderProps }) => { push('company.additionalOwners', undefined)} >