Move "Add network" button down
This commit is contained in:
parent
b3f2b53a6f
commit
6f6dfca5fb
File diff suppressed because one or more lines are too long
@ -198,7 +198,7 @@ i[class*=' icon-']:before {
|
|||||||
|
|
||||||
.tab-container {
|
.tab-container {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 50px;
|
top: 0;
|
||||||
bottom: 50px;
|
bottom: 50px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
@ -251,27 +251,28 @@ i[class*=' icon-']:before {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.side-buttons {
|
.side-buttons {
|
||||||
|
display: flex;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
width: 200px;
|
width: 200px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
|
||||||
|
|
||||||
.side-buttons i {
|
|
||||||
display: inline-block;
|
|
||||||
color: #999;
|
|
||||||
width: 50%;
|
|
||||||
line-height: 50px;
|
|
||||||
cursor: pointer;
|
|
||||||
font-size: 20px;
|
|
||||||
border-top: 1px solid #1d1d1d;
|
border-top: 1px solid #1d1d1d;
|
||||||
}
|
}
|
||||||
|
|
||||||
.side-buttons i:not(:first-child) {
|
.side-buttons i {
|
||||||
|
flex: 100%;
|
||||||
|
color: #999;
|
||||||
|
line-height: 50px;
|
||||||
|
cursor: pointer;
|
||||||
|
font-size: 18px;
|
||||||
border-left: 1px solid #1d1d1d;
|
border-left: 1px solid #1d1d1d;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.side-buttons button {
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
.side-buttons i:hover {
|
.side-buttons i:hover {
|
||||||
color: #ccc;
|
color: #ccc;
|
||||||
background: #1d1d1d;
|
background: #1d1d1d;
|
||||||
|
@ -68,9 +68,9 @@ export default class TabList extends PureComponent {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={className}>
|
<div className={className}>
|
||||||
<button onClick={this.handleConnectClick}>Add network</button>
|
|
||||||
<div className="tab-container">{tabs}</div>
|
<div className="tab-container">{tabs}</div>
|
||||||
<div className="side-buttons">
|
<div className="side-buttons">
|
||||||
|
<button onClick={this.handleConnectClick}>+</button>
|
||||||
<i className="icon-user" />
|
<i className="icon-user" />
|
||||||
<i className="icon-cog" onClick={this.handleSettingsClick} />
|
<i className="icon-cog" onClick={this.handleSettingsClick} />
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user