Skip to content

Commit e3b958f

Browse files
committed
closes #87. Hover on tutorial select
1 parent 3cd8796 commit e3b958f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

web-app/src/components/Card/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const Card = (props: Props) => (
2020
showTitleBullet={false}
2121
contentHeight="auto"
2222
onClick={props.onClick}
23-
css={{ ...styles.card, ...props.style }}
23+
style={{ ...styles.card, ...props.style }}
2424
>
2525
{props.children}
2626
</AlifdCard>

web-app/src/containers/New/TutorialList/TutorialItem.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const LanguageIcon = () => (
3838
)
3939

4040
const TutorialItem = (props: Props) => (
41-
<Card onClick={props.onSelect} css={styles.card}>
41+
<Card onClick={props.onSelect} style={styles.card}>
4242
<h3>{props.title || 'Title'}</h3>
4343
<Markdown minimal>{props.description || 'Description'}</Markdown>
4444
<div css={styles.languages}>

0 commit comments

Comments
 (0)