-
+ Le chômage partiel permet d'obenir un revenu net de{' '}
+
+ {formatValue({
+ value: net.nodeValue,
+ language,
+ unit: '€',
+ maximumFractionDigits: 0
+ })}
+
+ .
+
+ Soit{' '}
+
+ {formatValue({
+ value: (net.nodeValue / netHabituel.nodeValue) * 100,
+ unit: '%',
+ maximumFractionDigits: 0
+ })}
+ {' '}
+ du revenu net habituel.{' '}
+
+
{target.summary}
+ > + ) +} + +const ResultTable = styled.table` + width: 100%; + border-collapse: collapse; + margin-top: 5px; + + &.ui__.mobile-version { + display: none; + @media (max-width: 660px) { + display: table; + } + } + + &:not(.mobile-version) { + display: none; + @media (min-width: 660px) { + display: table; + } + + td:nth-child(2) { + font-size: 1em; + opacity: 0.8; + } + } + + td { + border-top: 1px solid rgba(0, 0, 0, 0.1); + padding: 8px 16px 0; + + p { + font-style: italic; + } + } + + th:nth-child(n + 2) { + white-space: nowrap; + text-align: right; + padding: 8px 16px; + } + + th:first-child { + width: 100%; + padding-left: 10px; + } + + td:nth-child(n + 2) { + text-align: right; + font-size: 1.3em; + } + + td:last-child, + th:last-child { + background: var(--lighterColor); + } +` + function TextExplanations() { const { i18n } = useTranslation() if (i18n.language !== 'fr') {