wip basic page

This commit is contained in:
Niklas 2025-06-27 14:05:56 +02:00 committed by Luisa Bellitto
parent 41c55d81f7
commit 19deb7afcb
2 changed files with 8 additions and 6 deletions

View file

@ -1,9 +1,9 @@
import "./aboutUs.css";
function AboutUs() { function AboutUs() {
return ( return (
<div className="mainbox test"> <div className="mainbox">
<img style={{height: "200px", position: "relative"}} src='/assets/icons/feather_black.svg' alt="featherIcon" /> <img style={{height: "200px", position: "relative"}} src='/assets/icons/feather_black.svg' alt="featherIcon" />
</div> </div>
); );

View file

@ -1,14 +1,16 @@
.mainbox { .mainbox {
padding-block-start: 1000px; /* TODO header height variablen anpassen sobald PR für header durch ist*/
min-height: 100vh; margin-top: var(--Header-height);
min-height: calc(100vh - var(--Header-height));
} }
@media screen and (min-width: 768px) { @media screen and (min-width: 768px) {
.mainbox { .mainbox {
margin-top: 1000px; margin-top: var(--Header-height);
min-height: 100vh;
} }
} }
/* TODO Entfernen vor final*/
.test { .test {
height: 100vh; height: 100vh;
width: 100vw; width: 100vw;