Fix mobile scrollbar

This commit is contained in:
Marco Realacci 2023-09-29 03:18:51 +02:00
parent 787b6250e5
commit 046ea81f1b
3 changed files with 14 additions and 3 deletions

View file

@ -72,7 +72,7 @@ onMounted(() => {
</div>
</main>
<foooer class="footer">
<a href="https://quicwg.org" target="_blank">Cool, but what the hell is QUIC?</a> | Powered by <a
<a href="https://quicwg.org" target="_blank">Cool, but what the hell is QUIC?</a><br />Powered by <a
style="text-decoration: underline" href="https://github.com/notherealmarco/vue-quic-test"
target="_blank">vue-quic-test</a>
</foooer>
@ -129,5 +129,13 @@ h1 {
.logo {
margin: 0 2rem 0 0;
}
h1 {
font-size: 2.2rem;
}
.bottom-text {
font-size: 1.15rem;
}
}
</style>

View file

@ -58,8 +58,11 @@
font-weight: normal;
}
html, body {
height: 100%;
}
body {
min-height: 100vh;
color: var(--color-text);
background: var(--color-background);
transition:

View file

@ -1,6 +1,6 @@
@import './base.css';
body{
body {
display: flex;
place-items: center;
}