Update comments onboarding carousel images (#5373)

This commit is contained in:
Rishabh Saxena 2021-06-24 12:50:35 +05:30 committed by GitHub
parent 599996fbfa
commit a61b802039
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 6 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 730 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 187 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 140 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 204 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 206 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 59 KiB

View File

@ -64,6 +64,11 @@ const IntroContentContainer = styled.div`
padding: ${(props) => props.theme.spaces[5]}px;
`;
const StyledImg = styled.img`
width: 100%;
object-fit: contain;
`;
function IntroStep(props: {
title: string;
content: string;
@ -72,7 +77,7 @@ function IntroStep(props: {
}) {
return (
<>
<img alt="" src={props.banner} />
<StyledImg alt="" src={props.banner} />
<IntroContentContainer>
<div style={{ marginBottom: props.theme.spaces[4] }}>
<Text