diff --git a/src/pages/GiftAid/SubmitForm/SubmitFormFields.js b/src/pages/GiftAid/SubmitForm/SubmitFormFields.js index 534bd36a..f3616c2c 100644 --- a/src/pages/GiftAid/SubmitForm/SubmitFormFields.js +++ b/src/pages/GiftAid/SubmitForm/SubmitFormFields.js @@ -23,7 +23,7 @@ export const submitFormFields = { label, required: true, emptyFieldErrorText: 'To Gift Aid your donation you need to tick the checkbox', - additionalText: '* By ticking I state I am a UK taxpayer making a personal donation and understand that if I pay less Income Tax and/or Capital Gains Tax than the amount of Gift Aid claimed on all my donations, it is my responsibility to pay any difference. Find out more' + additionalText: '* By ticking, I state I am a UK taxpayer making a personal donation and understand that if I pay less Income Tax and/or Capital Gains Tax than the amount of Gift Aid claimed on all my donations, it is my responsibility to pay any difference. Please note that the money that Comic Relief claims back from HMRC as part of the Gift Aid scheme will be treated as unrestricted funds and used to support our general work, even if the original donation was made towards a specific appeal. Find out more' }, phoneNumber: { id: 'mobile', diff --git a/src/pages/GiftAid/UpdateForm/UpdateFormFields.js b/src/pages/GiftAid/UpdateForm/UpdateFormFields.js index dbb8e8ba..6361662c 100644 --- a/src/pages/GiftAid/UpdateForm/UpdateFormFields.js +++ b/src/pages/GiftAid/UpdateForm/UpdateFormFields.js @@ -38,9 +38,7 @@ export const donationTypeChoices = [ export const giftAidButtonChoices = [ { label: giftAidButtonChoicesLabel, - additionalText: '* By ticking I state I am a UK taxpayer making a personal donation and understand' + - 'that if I pay less Income Tax and/or Capital Gains Tax than the amount of Gift Aid claimed on all my ' + - 'donations, it is my responsibility to pay any difference. [Find out more](http://www.comicrelief.com)', + additionalText: '* By ticking, I state I am a UK taxpayer making a personal donation and understand that if I pay less Income Tax and/or Capital Gains Tax than the amount of Gift Aid claimed on all my donations, it is my responsibility to pay any difference. Please note that the money that Comic Relief claims back from HMRC as part of the Gift Aid scheme will be treated as unrestricted funds and used to support our general work, even if the original donation was made towards a specific appeal. [Find out more](http://www.comicrelief.com)', value: 1, }, { diff --git a/src/styles/SubmitForm.scss b/src/styles/SubmitForm.scss index 47fda89a..eb2abd54 100644 --- a/src/styles/SubmitForm.scss +++ b/src/styles/SubmitForm.scss @@ -86,10 +86,11 @@ $colour-scorpion-grey: #595959; } .form__field-additional-text { - margin: 25px 0; + margin: 25px 0 20px; line-height: 1.6; color: $colour-scorpion-grey; font-family: $font-regular; + font-size: 13px; .link.inline { border-width: 3px; @@ -103,7 +104,7 @@ $colour-scorpion-grey: #595959; } } @include breakpoint($screen-md) { - margin: 50px 0; + margin: 50px 0 20px; } } diff --git a/src/styles/UpdateForm.scss b/src/styles/UpdateForm.scss index ffac0716..078c4f27 100644 --- a/src/styles/UpdateForm.scss +++ b/src/styles/UpdateForm.scss @@ -72,7 +72,7 @@ $colour-scorpion-grey: #595959; } .form__field-additional-text { - margin: 0; + margin: 0 0 15px; line-height: 1.6; color: $colour-scorpion-grey; font-family:$font-regular; @@ -95,7 +95,7 @@ $colour-scorpion-grey: #595959; } } @include breakpoint($screen-md) { - margin: 0; + margin-bottom: 20px; } }