tst
All checks were successful
deploy to production / deploy (push) Successful in 1m57s

This commit is contained in:
Robin Grenzdörfer 2023-10-08 19:36:26 +00:00
parent b89b0c3a50
commit 1ff872d1dd
2 changed files with 2 additions and 2 deletions

View File

@ -282,7 +282,7 @@
margin-top: -15px;
.logo-text {
padding: 0px 5px;
width: 180px;
width: 200px;
p {
white-space: nowrap;
text-align: left;

View File

@ -35,7 +35,7 @@
let heightOfEl = el?.clientHeight
const hp = document.getElementById("Homepage")
const homepage_placeholder = document.getElementById("homepage-placeholder")
if (hp) {
if (hp && window.innerHeight < 600) {
hp.style.minHeight = (heightOfEl || window.innerHeight) + 200 + "px"
homepage_placeholder.style.minHeight = (heightOfEl || window.innerHeight) + 350 + "px"
}