Ajout d'un bouton de signalement d'erreur sur /regle
parent
51783e64ab
commit
f598ea8a19
|
@ -65,3 +65,12 @@
|
|||
#examples .example.ok i {
|
||||
color: #2ecc71
|
||||
}
|
||||
|
||||
#reportError {
|
||||
background: #c0392b;
|
||||
color: white;
|
||||
border: none;
|
||||
font-size: 100%;
|
||||
padding: .3em .6em;
|
||||
margin-top: 3em;
|
||||
}
|
||||
|
|
|
@ -83,6 +83,12 @@ export default class Examples extends Component {
|
|||
}
|
||||
</ul>
|
||||
}
|
||||
<button
|
||||
id="reportError">
|
||||
<a href={"mailto:contact@embauche.beta.gouv.fr?subject=Erreur dans une règle " + name}>
|
||||
<i className="fa fa-exclamation-circle" aria-hidden="true" style={{marginRight: '.6em'}}></i>Signaler une erreur
|
||||
</a>
|
||||
</button>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
|
|
@ -19,9 +19,6 @@ body {
|
|||
transform: rotate(-45deg);
|
||||
font-weight: bold;
|
||||
}
|
||||
#warning a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#content {
|
||||
margin-top: 1.5em;
|
||||
|
@ -36,6 +33,7 @@ body {
|
|||
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
h1 {
|
||||
|
|
Loading…
Reference in New Issue