diff --git a/assets/css/src/generic/_typography.scss b/assets/css/src/generic/_typography.scss index 37adfeba0b..4ed5dc8090 100644 --- a/assets/css/src/generic/_typography.scss +++ b/assets/css/src/generic/_typography.scss @@ -1,4 +1,5 @@ #wpbody { + color: $color-text; font-family: $font-family; font-size: $font-size; line-height: $line-height; @@ -55,6 +56,7 @@ h5.mailpoet-h5 { list-style-type: disc; } +.mailpoet-links a, .mailpoet-link { color: $color-secondary; text-decoration: underline; @@ -66,6 +68,18 @@ h5.mailpoet-h5 { } } +.mailpoet-text-links a, +.mailpoet-text-link { + color: $color-text; + text-decoration: underline; + + &:hover, + &:focus { + color: $color-text-hover; + text-decoration: none; + } +} + .mailpoet-font-small { font-size: $font-size-small; } diff --git a/assets/js/src/help/knowledge_base.jsx b/assets/js/src/help/knowledge_base.jsx index 01ff8f06e3..dce8fe17ca 100644 --- a/assets/js/src/help/knowledge_base.jsx +++ b/assets/js/src/help/knowledge_base.jsx @@ -1,11 +1,12 @@ import React from 'react'; import MailPoet from 'mailpoet'; +import Button from 'common/button/button'; function KnowledgeBase() { return ( <>
{MailPoet.I18n.t('knowledgeBaseIntro')}
-{noticeMessage}
{additionalInfo ? ({additionalInfo}
) : null}{MailPoet.I18n.t('yourPrivacyContent2')}
{MailPoet.I18n.t('yourPrivacyContent3')}
- {MailPoet.I18n.t('yourPrivacyButton')} + > ); }