Improve styling
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
Severin Kaderli 2022-11-21 19:37:03 +01:00
parent f38c4239b2
commit d89e6c940f
Signed by: severinkaderli
GPG key ID: F419F8835B72F0C4
3 changed files with 4 additions and 8 deletions

View file

@ -18,7 +18,6 @@
<button id="start-calibration-button">Start Calibration</button>
<button class="hide" id="stop-calibration-button">Stop Calibration</button>
</div>
<p id="log"></p>
</main>
<script src="./scripts/Constants.js"></script>
<script src="./scripts/Utility.js"></script>

View file

@ -67,7 +67,6 @@ class Utility {
}
static log(text) {
//logParagraph.innerHTML = `${text}<br>${logParagraph.innerHTML}`;
console.log(text);
}
}

View file

@ -1,5 +1,6 @@
:root {
--spacing: 12px;
--input-height: 40px;
}
* {
@ -22,16 +23,12 @@ main {
input {
width: 100%;
padding: var(--spacing);
}
#message {
position: relative;
}
#log {
height: 300px;
font-size: 0.8rem;
overflow: scroll;
min-height: 23px;
}
.buttons {
@ -43,6 +40,7 @@ input {
button {
width: 100%;
display: block;
padding: var(--spacing);
}
.hide {