fixed embed.html flexbox

This commit is contained in:
Steven Hugg 2019-05-21 16:49:48 -04:00
parent 0ea0ac2f60
commit 7b1ec939b6
2 changed files with 11 additions and 1 deletions

View File

@ -13,8 +13,11 @@
align-items: center;
justify-content: center;
}
#emuscreen {
flex-grow: 1;
}
.emuvideo {
height:80%;
width:90%;
border-radius:20px;
border: 4px solid #222;
outline-color: #666;

View File

@ -572,6 +572,13 @@ function pushChangesToGithub(message:string) {
files.push({path:newpath, data:data});
}
}
// TODO: include built ROM file in bin/[mainfile].rom
/*
if (current_output instanceof Uint8Array) {
let binpath = "bin/"+getCurrentMainFilename()+".rom";
files.push({path:binpath, data:current_output});
}
*/
// push files
setWaitDialog(true);
return getGithubService().login().then( () => {