Add windows & linux build scripts
This commit is contained in:
parent
f90c0e6c40
commit
862642fd04
5 changed files with 14 additions and 3 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -3,3 +3,5 @@
|
|||
electron/build
|
||||
android/build
|
||||
android/app/build
|
||||
|
||||
build/
|
||||
3
build-linux.sh
Executable file
3
build-linux.sh
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
mkdir build
|
||||
cd build
|
||||
npx electron-packager ../electron miarven --platform=linux --arch=x64
|
||||
3
build-windows.sh
Executable file
3
build-windows.sh
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
mkdir build
|
||||
cd build
|
||||
npx electron-packager ../electron miarven --platform=win32 --arch=x64
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"appId": "com.yourdoamnin.yourapp",
|
||||
"appId": "olcxja.miarven",
|
||||
"directories": {
|
||||
"buildResources": "resources"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -47,12 +47,13 @@ body {
|
|||
font-family: "Nunito", sans-serif;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
||||
button, input {
|
||||
border-radius: 0.8rem;
|
||||
background-color: rgba(255, 255, 255, 0.05);
|
||||
margin: var(--button-margin);
|
||||
padding: var(--button-margin);
|
||||
padding-left: calc(var(--button-margin) * 2);
|
||||
|
||||
height: var(--button-height);
|
||||
display: flex;
|
||||
cursor: pointer;
|
||||
|
|
@ -60,7 +61,9 @@ button, input {
|
|||
justify-content: flex-start;
|
||||
border: var(--border-width) solid var(--light-border-color);
|
||||
}
|
||||
|
||||
input {
|
||||
padding-left: calc(var(--button-margin) * 2);
|
||||
}
|
||||
|
||||
|
||||
indicator {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue