changed design things
This commit is contained in:
parent
9430de90d0
commit
dc22c008d3
2 changed files with 15 additions and 4 deletions
|
@ -57,7 +57,9 @@ export class MyHeader extends React.Component {
|
|||
{this.props.username}
|
||||
</Label>
|
||||
<Divider />
|
||||
<Button onClick={this.logout}>Logout</Button>
|
||||
<Button basic inverted onClick={this.logout}>
|
||||
Logout
|
||||
</Button>
|
||||
</Grid.Column>
|
||||
</Grid.Row>
|
||||
</Grid>
|
||||
|
|
|
@ -4,7 +4,15 @@ import { connect } from "react-redux";
|
|||
import { RemoteService } from "../../../remote";
|
||||
|
||||
const DeleteModal = (props) => (
|
||||
<Modal trigger={<Button color="red">Remove</Button>} closeIcon>
|
||||
<Modal
|
||||
trigger={
|
||||
<Button icon labelPosition="left" inverted color="red">
|
||||
<Icon name="trash alternate" />
|
||||
Delete device
|
||||
</Button>
|
||||
}
|
||||
closeIcon
|
||||
>
|
||||
<Header icon="archive" content="Are you sure ?" />
|
||||
<Modal.Actions>
|
||||
<Button color="red">
|
||||
|
@ -44,10 +52,11 @@ const SettingsForm = (props) => {
|
|||
</Form.Field>
|
||||
<Button
|
||||
onClick={() => props.saveFunction(values)}
|
||||
color="blue"
|
||||
color="green"
|
||||
type="submit"
|
||||
>
|
||||
Save
|
||||
<Icon name="checkmark" />
|
||||
Save changes
|
||||
</Button>
|
||||
</Form>
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue