1
0
mirror of https://github.com/mgerb/ps-launcher synced 2026-01-11 02:52:49 +00:00

v0.0.2 - webview and other updates

This commit is contained in:
2017-10-25 23:16:55 -05:00
parent 96f9c4ca5d
commit f584a5a2f9
25 changed files with 418 additions and 51 deletions

View File

@@ -22,12 +22,12 @@
cursor: pointer;
border-color: $blue;
color: $blue;
border-color: $gray;
color: $gray;
&:hover {
border-color: $blue--lighter;
color: $blue--lighter;
border-color: $gray--1;
color: $gray--1;
}
}
@@ -43,6 +43,10 @@
border: 2px solid;
}
.header-icon--close {
font-size: 30px;
}
.header__version {
color: $blue--lighter;
font-size: 12px;

View File

@@ -37,11 +37,11 @@ export class Header extends React.Component<Props, any> {
public render(): any {
return (
<div className="header">
<div className="header__version">PS Launcher <span style={{ fontSize: '10px' }}>v{VERSION}</span></div>
<div className="header__version"><span style={{ fontSize: '10px' }}>v{VERSION}</span></div>
<div className="header__draggable-region"></div>
<div className="header-icon header-icon--minimize" onClick={this.minimize.bind(this)}/>
<div className="header-icon header-icon--maximize" onClick={this.maximize.bind(this)}/>
<div className="fa fa-times fa-lg header-icon" onClick={() => this.exit()}/>
<div className="header-icon header-icon--close" onClick={() => this.exit()}>×</div>
</div>
);
}