Skip to content

Commit

Permalink
Style Add movie und die Footer Link
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanChiosa committed Feb 1, 2024
1 parent 9e3edcf commit 9e9d148
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
3 changes: 1 addition & 2 deletions frontend/src/components/addMovie/AddMovieForm.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.add-new-movie {
padding-top: 10px;
margin: 40px;
padding-top: 5px;
}

.form {
Expand Down
4 changes: 4 additions & 0 deletions frontend/src/components/footer/Footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,8 @@ footer {
text-align: center;
padding: 20px;
margin-top: 10px;
}

footer a {
color: #007bff;
}
7 changes: 6 additions & 1 deletion frontend/src/components/footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ import './Footer.css';
const Footer: React.FC = () => {
return (
<footer>
<p>Ivan Chiosa Capstone-Projekt © 2024 neue fische. Alle Rechte vorbehalten.</p>

<p>Ivan Chiosa Capstone-Projekt © 2024 neue fische. Alle Rechte vorbehalten.
<a href="https://github.com/IvanChiosa"> Github </a>oder
<a href="https://www.linkedin.com/in/ivanchiosa/"> Linkedin</a>
</p>

</footer>
);
};
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/hero/Hero.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
}

.movie-card-container {
height: 719px;
height: 818px;
background-color: black;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const MovieList: React.FC = () => {

return (
<div className="card-style">
<Row xs={1} md={2} lg={3} className="movie-row">
<Row xs={1} md={2} lg={2} className="movie-row">
{movies.map((movie) => (
<Col key={movie.id} className="mb-3">
<Card className="card-movie">
Expand Down

0 comments on commit 9e9d148

Please sign in to comment.