Skip to content

Commit

Permalink
chore: minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
abrunner committed Nov 11, 2021
1 parent f64a22f commit 7b0d273
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 10 deletions.
19 changes: 17 additions & 2 deletions src/experiments/super_tiles/components/CodeStreamTile.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,30 @@ const CodeStreamTile = () => {
</h2>
<span
css={css`
color: var(--primary-text-color);
color: var(--color-neutrals-600);
.dark-mode & {
color: var(--primary-text-color);
}
`}
>
CodeStream supercharges development workflows by putting
collaboration tools in your IDE.
</span>
</div>
<div>
<Button variant={Button.VARIANT.OUTLINE}>Install CodeStream</Button>
<Button
css={css`
border-color: var(--color-brand-400);
color: var(--color-brand-400);
.dark-mode & {
color: var(--color-brand-400);
}
`}
variant={Button.VARIANT.OUTLINE}
>
Install CodeStream
</Button>
</div>
</div>
</SuperTile>
Expand Down
9 changes: 1 addition & 8 deletions src/experiments/super_tiles/components/GuidedInstallTile.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,7 @@ const GuidedInstallTile = () => {
</span>
</div>
<div>
<Button
css={css`
background-color: var(--color-brand-500);
`}
variant={Button.VARIANT.PRIMARY}
>
Install New Relic
</Button>
<Button variant={Button.VARIANT.PRIMARY}>Install New Relic</Button>
</div>
</div>
</SuperTile>
Expand Down

0 comments on commit 7b0d273

Please sign in to comment.