Skip to content

Commit

Permalink
fix(TOS): change font size
Browse files Browse the repository at this point in the history
  • Loading branch information
newick authored and lutangar committed Sep 27, 2019
1 parent 9b80db8 commit 992e192
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
11 changes: 5 additions & 6 deletions src/app/options/App/Onboarding/TOS/TOS.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import TOSCheckbox from './TOSCheckbox';
import OnboardingSteps from '../OnboardingAtoms/OnboardingSteps/OnboardingSteps';

const TOSTitle = styled.h3`
margin-bottom: 20px;
font-size: 28px;
font-weight: bold;
text-align: center;
Expand All @@ -28,8 +29,8 @@ const TOSList = styled.ol`
`;

const TOSListItem = styled.li`
margin-bottom: 20px;
font-size: 22px;
margin-bottom: 10px;
font-size: 18px;
&:before {
content: counter(TOS) '.';
Expand Down Expand Up @@ -109,10 +110,8 @@ export default ({
<strong>Pas de publicité</strong>
</TOSListItem>
<TOSListItem>
<strong>
Anonymat: Pas d’email ni de compte nécessaires pour naviguer
avec Bulles
</strong>
<strong>Anonymat:</strong> Pas d’email ni de compte nécessaires
pour naviguer avec Bulles
</TOSListItem>
<TOSListItem>
<strong>Seules des données strictement utiles</strong> au
Expand Down
9 changes: 7 additions & 2 deletions src/app/options/App/Onboarding/TOS/TOSAlreadyAccepted.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
import React from 'react';
import styled from 'styled-components';
import { ExternalLink } from 'components/atoms';
import TOSText from './TOSText';

const Text = styled(TOSText)`
font-size: 16px;
`;

const TOSAlreadyAccepted = () => (
<TOSText>
<Text>
Vous avez accepté les{' '}
<ExternalLink href="https://www.bulles.fr/cgu">
conditions générales d&apos;utilisation (CGU)
</ExternalLink>
</TOSText>
</Text>
);

export default TOSAlreadyAccepted;
1 change: 1 addition & 0 deletions src/app/options/App/Onboarding/TOS/TOSCheckbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ const TOSForm = styled.form`
label {
margin-left: 12px;
font-size: 16px;
}
`;

Expand Down

0 comments on commit 992e192

Please sign in to comment.