Remove padding
This commit is contained in:
parent
f9c89dffcc
commit
1654bf83f8
2 changed files with 2 additions and 5 deletions
5
app.css
5
app.css
|
@ -11,6 +11,7 @@ html, body, .wrapper {
|
|||
margin: 0;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
|
@ -34,10 +35,6 @@ body {
|
|||
padding: 30px 0;
|
||||
}
|
||||
|
||||
.container {
|
||||
padding: 10px 20px;
|
||||
}
|
||||
|
||||
.header__title {
|
||||
font-size: calc(50px + 16 * (100vw - 320px) / (960 - 320));
|
||||
font-weight: normal;
|
||||
|
|
2
app.js
2
app.js
|
@ -31,7 +31,7 @@ addButtonInfo("https://bitrise-redirector.herokuapp.com/v0.1/apps/daeff1893f3c81
|
|||
function(button, version, res) {
|
||||
var json = JSON.parse(res.responseText);
|
||||
button.href = json.expiring_download_url;
|
||||
version.innerHTML = "Build" + json.build_number;
|
||||
version.innerHTML = "Build " + json.build_number;
|
||||
|
||||
setTimeout(function() {
|
||||
button.href = json.public_install_page_url;
|
||||
|
|
Loading…
Reference in a new issue