Skip to content

Commit

Permalink
chore: Fix description
Browse files Browse the repository at this point in the history
  • Loading branch information
ape-fede committed Nov 29, 2022
1 parent 87a7022 commit a5fca6e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/widgets/TutorialModal/TutorialModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,17 @@ const TutorialModal: React.FC<TModalProps> = ({ type, title, description, childr
</Text>
</Flex>
<Flex sx={{ width: "100%" }}>
<Text>{element.title}</Text>
<Text
sx={{
fontSize: ["12px", "12px", "22px"],
lineHeight: ["12px", "12px", "22px"],
fontWeight: 700,
textTransform: ["uppercase", "uppercase", "capitalize"],
mb: [0, 0, "10px"],
}}
>
{element.title}
</Text>
</Flex>
<Flex sx={{ width: "100%" }}>{element.description}</Flex>
</Flex>
Expand Down
1 change: 1 addition & 0 deletions src/widgets/TutorialModal/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ export const styles: Record<string, ThemeUIStyleObject> = {
right: {
flexDirection: "column",
height: "100%",
minHeight: "270px",
},
modalHeader: {
flexDirection: ["column"],
Expand Down

0 comments on commit a5fca6e

Please sign in to comment.