🎨 Style de la barre de progression
parent
b9f347d3fa
commit
e2db80ee1b
|
@ -1,7 +1,7 @@
|
|||
|
||||
#sim .tip {
|
||||
font-style: italic;
|
||||
margin-bottom: .6em;
|
||||
margin-bottom: 1em;
|
||||
text-align: center;
|
||||
}
|
||||
#sim .tip p {
|
||||
|
@ -9,4 +9,14 @@
|
|||
}
|
||||
#sim .tip progress {
|
||||
margin-left: 1em;
|
||||
background: white;
|
||||
border: 1px solid #2975D1;
|
||||
}
|
||||
|
||||
progress::-webkit-progress-bar {
|
||||
background: white;
|
||||
}
|
||||
|
||||
progress::-webkit-progress-value {
|
||||
background: #2975D1;
|
||||
}
|
||||
|
|
|
@ -44,13 +44,13 @@ export default class Results extends Component {
|
|||
<div id="results-titles">
|
||||
<h2>
|
||||
<i className="fa fa-calculator" aria-hidden="true" />
|
||||
{targets.length == 1 ? "Votre objectif" : "Vos objectifs"}
|
||||
{targets.length == 1 ? "Votre résultat" : "Vos résultats"}
|
||||
</h2>
|
||||
</div>
|
||||
<Link className="edit" to="/">
|
||||
<i className="fa fa-pencil-square-o" aria-hidden="true" />
|
||||
{" "}
|
||||
<span>Modifier</span>
|
||||
<span>Changer d'objectif</span>
|
||||
</Link>
|
||||
<ul>
|
||||
{targets.map(rule => (
|
||||
|
|
Loading…
Reference in New Issue