-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change styles of form's title, buttons and inputs and content for que…
…stion 1
- Loading branch information
1 parent
95ad4ec
commit 843c375
Showing
8 changed files
with
78 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
#root { | ||
max-width: 1440px; | ||
margin: 0 auto; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
import React, {FC} from 'react'; | ||
import {Typography} from "antd"; | ||
import './StepTitle.scss' | ||
// import './StepTitle.scss' | ||
type Props = { | ||
title: string, | ||
subtitle: string | ||
title: string, | ||
subtitle: string | ||
} | ||
const {Title, Paragraph} = Typography | ||
const StepTitle:FC<Props> = ({title, subtitle}) => { | ||
return ( | ||
<div className={'step-title'}> | ||
<Title level={4}>{title}</Title> | ||
<Paragraph style={{color: 'gray'}}>{subtitle}</Paragraph> | ||
</div> | ||
); | ||
return ( | ||
<div className={'step-title'}> | ||
<Title level={2}>{title}</Title> | ||
<Paragraph className={'description'}>{subtitle}</Paragraph> | ||
</div> | ||
); | ||
}; | ||
|
||
export default StepTitle; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters