add status icons and styling

This commit is contained in:
Barry Gitarts 2018-08-02 17:57:06 -04:00
parent f69ca3298c
commit ba212fa6dc
6 changed files with 4 additions and 7 deletions

View File

@ -1,6 +1,3 @@
// Where shared common styles live
// --- BOOTSTRAP ---
@import './variables';
@import './mixins';
@import '~bootstrap-sass/assets/stylesheets/bootstrap/normalize';

View File

@ -1,4 +1,4 @@
export const APP_TITLE = 'MyCrypto';
export const REPOSITORY_OWNER = 'MyCryptoHQ';
export const REPOSITORY_NAME = 'MyCrypto';
export const APP_TITLE = 'Status';
export const REPOSITORY_OWNER = 'status-im';
export const REPOSITORY_NAME = 'Status';
export const REPOSITORY = `https://github.com/${REPOSITORY_OWNER}/${REPOSITORY_NAME}`;

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 167 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 41 KiB

View File

@ -102,7 +102,7 @@ export default function(mainWindow: BrowserWindow) {
}
function resetWindowFromUpdates(window: BrowserWindow) {
window.setTitle('MyCrypto');
window.setTitle('Status');
window.setProgressBar(-1); // Clears progress bar
}