Skip to content
This repository was archived by the owner on Apr 19, 2021. It is now read-only.

Commit 478cc2e

Browse files
committed
wip.
1 parent 623d713 commit 478cc2e

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

src/components/gitpod-vs-codespaces/Difference.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ const StyledDifference = styled.section<{spacing?: 'small'}>`
2323
}
2424
2525
h2 + p {
26-
margin: 3rem 0 2rem;
26+
max-width: 500px;
27+
margin: 3rem auto 2rem;
2728
}
2829
2930
.btn {
@@ -49,7 +50,7 @@ const Difference = ({title, spacing}: DifferenceProps) => {
4950
<h2>
5051
<strong>{title ? title : 'Want to See the Difference for Yourself?'}</strong>
5152
</h2>
52-
<p>Add a Gitpod button to your repository.</p>
53+
<p>Add a Gitpod button to your repository and start your dev environment with a single click.</p>
5354
<a
5455
href={
5556
browser === 'Firefox'

src/components/index/GetStarted.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const GetStarted = () => (
4747
style={{padding: '8rem 0'}}
4848
>
4949
<StyledGetStarted className="row">
50-
<h3 style={{textAlign: 'center', fontWeight: 400}}>Or Try an Example Project</h3>
50+
<h3 style={{textAlign: 'center', fontWeight: 400}}>Don’t want to open your own repo? Choose an example.</h3>
5151
<div className="get-started__projects">
5252
{projects.map((project, i) => (
5353
<Project

src/components/index/SecurityAndOSS.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const Styled = styled.section`
3030

3131
const SecurityAndOSS = () => (
3232
<Styled>
33-
<div className="row">
33+
<div className="row pattern">
3434
<div className="text-container">
3535
<TextFeature
3636
path={HighlySecureImg}

src/components/index/TextFeature.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { colors, borders } from '../../styles/variables'
66
const StyledTextFeature = styled.div`
77
max-width: 600px;
88
padding: 4rem 6rem;
9-
background: ${colors.offWhite};
9+
background: ${colors.white};
1010
border: ${borders.light};
1111
border-radius: 3px;
1212
max-width: 450px;

0 commit comments

Comments
 (0)