Skip to content

Commit

Permalink
Merge pull request #766 from glific/feature/settings-styling
Browse files Browse the repository at this point in the history
Fixed font and style settings on settings page
  • Loading branch information
kurund authored Nov 30, 2020
2 parents 5428b11 + 03aabe1 commit 1e0b8fb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
7 changes: 7 additions & 0 deletions src/containers/SettingList/SettingList.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,13 @@
padding-bottom: 50px !important;
}

.Description {
padding-top: 12px;
font-size: 16px !important;
color: #93a29b;
line-height: 1.25 !important;
}

.Title {
margin-left: 24px !important;
margin-top: 16px !important;
Expand Down
7 changes: 6 additions & 1 deletion src/containers/SettingList/SettingList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,12 @@ export const SettingList: React.SFC = () => {
<div data-testid="label" className={styles.Label}>
{data.name}
</div>
<Typography variant="body2" component="div" data-testid="description">
<Typography
variant="body2"
component="div"
data-testid="description"
className={styles.Description}
>
{data.description}
</Typography>
</CardContent>
Expand Down

0 comments on commit 1e0b8fb

Please sign in to comment.