mirror of
https://github.com/bubblecup-12/VogelSocialMedia.git
synced 2025-07-06 15:18:48 +00:00
wip basic page
This commit is contained in:
parent
41c55d81f7
commit
19deb7afcb
2 changed files with 8 additions and 6 deletions
|
@ -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>
|
||||||
);
|
);
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue