mirror of
https://github.com/bubblecup-12/VogelSocialMedia.git
synced 2025-07-06 14:48:48 +00:00
wip basic page
This commit is contained in:
parent
5ff25f4ca5
commit
873fb28045
2 changed files with 8 additions and 6 deletions
|
@ -1,9 +1,9 @@
|
|||
|
||||
import "./aboutUs.css";
|
||||
|
||||
function AboutUs() {
|
||||
|
||||
return (
|
||||
<div className="mainbox test">
|
||||
<div className="mainbox">
|
||||
<img style={{height: "200px", position: "relative"}} src='/assets/icons/feather_black.svg' alt="featherIcon" />
|
||||
</div>
|
||||
);
|
||||
|
|
|
@ -1,14 +1,16 @@
|
|||
.mainbox {
|
||||
padding-block-start: 1000px;
|
||||
min-height: 100vh;
|
||||
/* TODO header height variablen anpassen sobald PR für header durch ist*/
|
||||
margin-top: var(--Header-height);
|
||||
min-height: calc(100vh - var(--Header-height));
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.mainbox {
|
||||
margin-top: 1000px;
|
||||
min-height: 100vh;
|
||||
margin-top: var(--Header-height);
|
||||
}
|
||||
}
|
||||
|
||||
/* TODO Entfernen vor final*/
|
||||
.test {
|
||||
height: 100vh;
|
||||
width: 100vw;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue