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;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
min-height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
@ -34,10 +35,6 @@ body {
|
||||||
padding: 30px 0;
|
padding: 30px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
|
||||||
padding: 10px 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header__title {
|
.header__title {
|
||||||
font-size: calc(50px + 16 * (100vw - 320px) / (960 - 320));
|
font-size: calc(50px + 16 * (100vw - 320px) / (960 - 320));
|
||||||
font-weight: normal;
|
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) {
|
function(button, version, res) {
|
||||||
var json = JSON.parse(res.responseText);
|
var json = JSON.parse(res.responseText);
|
||||||
button.href = json.expiring_download_url;
|
button.href = json.expiring_download_url;
|
||||||
version.innerHTML = "Build" + json.build_number;
|
version.innerHTML = "Build " + json.build_number;
|
||||||
|
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
button.href = json.public_install_page_url;
|
button.href = json.public_install_page_url;
|
||||||
|
|
Loading…
Reference in a new issue