1
0
mirror of https://github.com/fazo96/ipfs-boards synced 2025-01-09 12:19:49 +01:00

more UI polish

This commit is contained in:
Enrico Fasoli 2018-02-09 00:26:21 +01:00
parent 3fab3696a5
commit 4495658be7
No known key found for this signature in database
GPG Key ID: 1238873C5F27DB4D
2 changed files with 10 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -7,8 +7,11 @@ export default function Boards({ stats, boards, createBoard }) {
return <Grid container divided colums={2}> return <Grid container divided colums={2}>
<Grid.Column width={8}> <Grid.Column width={8}>
<Header size='large' style={{marginTop:'.5em'}}> <Header size='large' style={{marginTop:'.5em'}}>
<Icon name="cube" color="blue" circular verticalAlign="middle" floated="right"/>
<Header.Content>
<Header.Content>IPFS Boards</Header.Content> <Header.Content>IPFS Boards</Header.Content>
<Header.Subheader>Experimental Build</Header.Subheader> <Header.Subheader>Experimental Build</Header.Subheader>
</Header.Content>
</Header> </Header>
<Divider /> <Divider />
<List relaxed> <List relaxed>
@ -48,12 +51,15 @@ export default function Boards({ stats, boards, createBoard }) {
</List.Content> </List.Content>
</List.Item> </List.Item>
</List> </List>
<div className="ui two buttons"> <div className="ui three buttons">
<Button as='a' href="https://github.com/fazo96/ipfs-boards" target="__blank" > <Button as='a' href="https://github.com/fazo96/ipfs-boards" target="__blank" >
<Icon name="github"/> GitHub <Icon name="github"/> GitHub
</Button> </Button>
<Button as={Link} to={'/b/new'}> <Button as={Link} to={'/b/new'}>
Open or Create Board <Icon name="plus"/> Add Board
</Button>
<Button as='a' href="https://github.com/fazo96/ipfs-boards/issues/new" target="__blank">
<Icon name="comment"/> Leave Feedback
</Button> </Button>
</div> </div>
</Grid.Column> </Grid.Column>