Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cd8796 commit e3b958fCopy full SHA for e3b958f
web-app/src/components/Card/index.tsx
@@ -20,7 +20,7 @@ const Card = (props: Props) => (
20
showTitleBullet={false}
21
contentHeight="auto"
22
onClick={props.onClick}
23
- css={{ ...styles.card, ...props.style }}
+ style={{ ...styles.card, ...props.style }}
24
>
25
{props.children}
26
</AlifdCard>
web-app/src/containers/New/TutorialList/TutorialItem.tsx
@@ -38,7 +38,7 @@ const LanguageIcon = () => (
38
)
39
40
const TutorialItem = (props: Props) => (
41
- <Card onClick={props.onSelect} css={styles.card}>
+ <Card onClick={props.onSelect} style={styles.card}>
42
<h3>{props.title || 'Title'}</h3>
43
<Markdown minimal>{props.description || 'Description'}</Markdown>
44
<div css={styles.languages}>
0 commit comments