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

Commit f5b989d

Browse files
committed
add a space between "Create Team" and the question mark.
1 parent 1d16fcc commit f5b989d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/PricingBox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const StyledPricingBox = styled.div<StyledPricingBoxProps>`
3232
background-color: ${colors.offWhite};
3333
border-radius: 3px;
3434
margin-top: ${({ isTitleOutside }) => isTitleOutside ? '6rem' : '2rem'};
35-
z-index: 1000;
35+
z-index: ${({ isTitleOutside }) => isTitleOutside ? '1000' : 'none'};;
3636
3737
@media(min-width: ${sizes.breakpoints.md}) {
3838
z-index: ${({ transform }) => transform ? '1' : null};

src/components/pricing/PricingBoxes.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ const plans: PricingBoxProps[] = [
9696
btnText: 'Buy Now',
9797
btnBackground: true,
9898
link: 'https://gitpod.io/subscription/',
99-
subAction: <a href="https://gitpod.io/teams/" target="_blank" className="sub-action">Create Team<PopOver textPosition="bottom" description="Get your entire team onto Gitpod with a single invoice" /></a>
99+
subAction: <a href="https://gitpod.io/teams/" target="_blank" className="sub-action">Create Team <PopOver textPosition="bottom" description="Get your entire team onto Gitpod with a single invoice" /></a>
100100
},
101101
{
102102
title: 'Unlimited',
@@ -106,7 +106,7 @@ const plans: PricingBoxProps[] = [
106106
features: ['Private & Public Repos', <span className="span">16 Parallel Workspaces <PopOver description="The maximum number of workspaces a user can run at the same time" /></span>, <span className="span">1h Timeout <PopOver description="Workspaces without user activity are stopped after 1 hour" /></span>, <span className="span">3h Timeout Boost <PopOver description="You can manually boost the timeout to 3 hours within a running workspace" /></span>],
107107
btnText: 'Buy Now',
108108
link: 'https://gitpod.io/subscription/',
109-
subAction: <a href="https://gitpod.io/teams/" target="_blank" className="sub-action">Create Team<PopOver textPosition="bottom" description="Get your entire team onto Gitpod with a single invoice" /></a>
109+
subAction: <a href="https://gitpod.io/teams/" target="_blank" className="sub-action">Create Team <PopOver textPosition="bottom" description="Get your entire team onto Gitpod with a single invoice" /></a>
110110
}
111111
]
112112

0 commit comments

Comments
 (0)