Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix like components #3

Merged
merged 2 commits into from Jan 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Postillon_Newsportal/src/components/Menu_Liste/styles.scss
Expand Up @@ -47,4 +47,4 @@ nav {
rotate(27deg);
position: absolute;
/* top: -20px; */

}
5 changes: 2 additions & 3 deletions Postillon_Newsportal/src/components/Teaser/index.jsx
@@ -1,4 +1,5 @@
import React, { useState } from "react";
import Like from "../Like/index.jsx"
import "./styles.scss";

const Teaser = ({ src, genre, title, subtitle, type }) => {
Expand All @@ -15,9 +16,7 @@ const Teaser = ({ src, genre, title, subtitle, type }) => {
<p>{subtitle}</p>
</div>
<div class="like--komponente">
<div component="like"></div>
<div component="like" start="54"></div>
<div component="like" start="23"></div>
<Like start={54}/>
</div>
</div>
</div>
Expand Down