started implementation of github

This commit is contained in:
steev 2023-02-06 09:56:09 +01:00
parent cd79310f3c
commit 5a75a90648
2 changed files with 26 additions and 19 deletions

7
renderer.js Normal file
View File

@ -0,0 +1,7 @@
// You can also put expose this code to the renderer
// process with the `contextBridge` API
const { ipcRenderer } = require('electron')
ipcRenderer.on('github-lookup', (_event, arg) => {
console.log(arg) // prints "pong" in the DevTools console
})

View File

@ -41,6 +41,25 @@ h4 {
background-color: #3d5a61; background-color: #3d5a61;
} }
#myProgress {
width: 100%;
border-radius: 5px;
border: 1px solid #74b1be;
}
#progress-bar {
width: 100%;
height: 33px;
border-radius: 5px;
background-color: #74b1be;
}
#progress-label {
position: absolute;
color: white;
padding: 1.5%;
}
div[class^=col-] { div[class^=col-] {
padding: 1rem 0 padding: 1rem 0
} }
@ -144,23 +163,4 @@ div[class^=col-] {
.col-offset-12 { .col-offset-12 {
margin-left: 100% margin-left: 100%
}
#myProgress {
width: 100%;
border-radius: 5px;
border: 1px solid #74b1be;
}
#progress-bar {
width: 100%;
height: 33px;
border-radius: 5px;
background-color: #74b1be;
}
#progress-label {
position: absolute;
color: white;
padding: 1.5%;
} }