Make "Remove network" button red

This commit is contained in:
Simon Ser 2021-06-11 00:33:22 +02:00
parent 4249da4ba8
commit 56c18e3810

View File

@ -61,7 +61,7 @@ export default class NetworkForm extends Component {
let removeNetwork = null;
if (!this.state.isNew) {
removeNetwork = html`
<button type="button" onClick=${() => this.props.onRemove()}>
<button type="button" class="danger" onClick=${() => this.props.onRemove()}>
Remove network
</button>
`;