diff --git a/source/components/ResultsGrid.js b/source/components/ResultsGrid.js index 56abec5a9..ab32d9c83 100644 --- a/source/components/ResultsGrid.js +++ b/source/components/ResultsGrid.js @@ -80,12 +80,9 @@ export default class ResultsGrid extends Component {
- | - {humanFigure(2)(brut)} (salaire brut) - | -- {humanFigure(2)(brut)} (salaire brut) + | Salaire brut | ++ {humanFigure(2)(brut)} | |||||
= | -{humanFigure(2)(net)} (salaire net) | +{humanFigure(2)(net)} Salaire net |
= |
- {humanFigure(2)(total)} (salaire total)
+ {humanFigure(2)(total)} Salaire total
|
|||||
{title(subCellName)} | +{title(subCellName)} | - | {humanFigure(2)(subCell(detail, subCellName, 'salariƩ'))} diff --git a/source/engine/mecanismViews/Somme.css b/source/engine/mecanismViews/Somme.css index 38bac0cb8..0c80ab285 100644 --- a/source/engine/mecanismViews/Somme.css +++ b/source/engine/mecanismViews/Somme.css @@ -65,3 +65,13 @@ .somme > table { border-bottom: 1px solid rgba(51, 51, 80, 0.15); } + + +#sommeBase { + text-align: center; +} + +.somme .annotation { + color: #2975D1; + font-weight: 600; +} |