🎨 enlève les liens tant que le branchement avec la doc n'est pas fait

pull/525/head
Johan Girod 2019-05-07 12:14:48 +02:00
parent da33a9a2c9
commit 120eb0f0af
No known key found for this signature in database
GPG Key ID: 9E27B57DA2E8AE12
2 changed files with 18 additions and 30 deletions

View File

@ -75,9 +75,6 @@
font-weight: bold;
color: red;
}
.comparaison-grid > .big {
font-size: 110%;
}
.comparaison-grid > .ui__.button {
place-self: center;

View File

@ -13,7 +13,6 @@ import React, { useState } from 'react'
import emoji from 'react-easy-emoji'
import { Helmet } from 'react-helmet'
import { connect } from 'react-redux'
import { Link } from 'react-router-dom'
import { règleAvecMontantSelector } from 'Selectors/regleSelectors'
import Animate from 'Ui/animate'
import AnimatedTargetValue from 'Ui/AnimatedTargetValue'
@ -163,7 +162,7 @@ const SchemeComparaisonPage = ({
{conversationStarted && (
<>
<h3 className="legend">Revenu net</h3>
<div className="AS big">
<div className="AS ">
{assimiléSalarié && (
<Animate.appear className="ui__ plain card">
<AnimatedTargetValue
@ -172,7 +171,7 @@ const SchemeComparaisonPage = ({
</Animate.appear>
)}
</div>
<div className="indep big">
<div className="indep ">
{indépendant && (
<Animate.appear className="ui__ plain card">
<AnimatedTargetValue
@ -181,43 +180,35 @@ const SchemeComparaisonPage = ({
</Animate.appear>
)}
</div>
<div className="auto big">
<div className="auto ">
{autoEntrepreneur && (
<Animate.appear className="ui__ plain card">
<Link to={autoEntrepreneur.revenuNet.lien}>
<AnimatedTargetValue
value={autoEntrepreneur.revenuNet.montant}
/>
</Link>
<AnimatedTargetValue
value={autoEntrepreneur.revenuNet.montant}
/>
</Animate.appear>
)}
</div>
<h3 className="legend">Retraite (estimation)</h3>
<div className="AS big">
<div className="AS">
{assimiléSalarié && (
<a>
<AnimatedTargetValue
value={assimiléSalarié.retraite.montant}
/>
</a>
<AnimatedTargetValue
value={assimiléSalarié.retraite.montant}
/>
)}
</div>
<div className="indep big">
<div className="indep">
{indépendant && (
<a>
<AnimatedTargetValue value={indépendant.retraite.montant} />
</a>
<AnimatedTargetValue value={indépendant.retraite.montant} />
)}
</div>
<div className="auto big">
<a>
{autoEntrepreneur && (
<AnimatedTargetValue
value={autoEntrepreneur.retraite.montant}
/>
)}
</a>
<div className="auto">
{autoEntrepreneur && (
<AnimatedTargetValue
value={autoEntrepreneur.retraite.montant}
/>
)}
</div>
</>
)}