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.
2 parents 3cd8796 + e3b958f commit bac9dc8Copy full SHA for bac9dc8
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