This commit is contained in:
Niklas 2025-06-27 15:36:53 +02:00 committed by Luisa Bellitto
parent 74cfc6fc64
commit 8711bee667
3 changed files with 12 additions and 5 deletions

View file

@ -3,11 +3,9 @@ import "./about.css";
function About() {
return (
<div className="mainbox">
<img
style={{ height: "200px", position: "relative" }}
src="/assets/icons/feather_black.svg"
alt="featherIcon"
/>
<h1 className="about-title color-orange">
About<br></br>Feather Feed
</h1>
</div>
);
}

View file

@ -10,6 +10,11 @@
}
}
.about-title {
flex-direction: row;
justify-content: start;
}
/* TODO Entfernen vor final*/
.test {
height: 100vh;

View file

@ -40,3 +40,7 @@ body {
.edit-icon {
color: var(--Rotkehlchen-brown-light);
}
.color-orange {
color: var(--Rotkehlchen-orange-default);
}