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

Commit 154ca06

Browse files
nisarhassan12svenefftinge
authored andcommitted
[pricing] delete the enterprise card + adjust the layout for pricing boxes.
1 parent 9a9aa7e commit 154ca06

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

src/components/PricingBox.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ const StyledPricingBox = styled.div<StyledPricingBoxProps>`
2222
font-size: 95%;
2323
min-height: 48rem;
2424
min-width: 20rem;
25-
max-width: 23rem;
26-
width: 20%;
25+
max-width: 26rem;
26+
width: 25%;
2727
text-align: center;
2828
color: ${({ background }) => background ? colors.white : null};
2929
background: ${({ background }) => background ? 'url("https://www.gitpod.io/galaxy.jpg")' : colors.white};

src/components/pricing/PricingBoxes.tsx

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { sizes } from '../../styles/variables'
55
import LightBulb from '../../resources/light-bulb.svg'
66
import Rocket from '../../resources/rocket.png'
77
import MagicCap from '../../resources/magic-cap.svg'
8-
import Earth from '../../resources/earth.svg'
98
import IconOpenSource from '../../resources/icon-open-source.svg'
109
import { PricingBoxProps } from '../PricingBox'
1110
import PopOver from '../PopOver'
@@ -23,9 +22,9 @@ const Styled = styled.div`
2322
2423
&__boxes {
2524
display: flex;
25+
justify-content: space-between;
2626
2727
@media(max-width: ${sizes.breakpoints.lg}) {
28-
justify-content: space-between;
2928
flex-wrap: wrap;
3029
}
3130
@@ -81,14 +80,6 @@ const plans: PricingBoxProps[] = [
8180
btnText: 'Buy Now',
8281
link: 'https://gitpod.io/subscription/',
8382
renderCreateTeamLink: true
84-
},
85-
{
86-
title: 'Enterprise',
87-
img: <img alt='Earth' src={Earth} />,
88-
feature: <span style={{ fontWeight: 600 }}>Unleash Developer Productivity</span>,
89-
background: true,
90-
btnText: 'Learn More',
91-
link: '/enterprise/#enterprise'
9283
}
9384
]
9485

0 commit comments

Comments
 (0)