Skip to content

Commit

Permalink
feat: clean up spacing and copy
Browse files Browse the repository at this point in the history
  • Loading branch information
aswanson-nr committed Jan 4, 2022
1 parent 0e717ce commit 7bb8b78
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/components/PackTile.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,11 @@ const PackTile = ({
</h4>
<p
css={css`
font-size: 0.875rem;
font-size: 0.8rem;
color: var(--secondary-text-color);
overflow: hidden;
display: -webkit-box;
white-space: normal;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
`}
Expand Down
7 changes: 4 additions & 3 deletions src/pages/instant-observability.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,13 +191,14 @@ const QuickstartsPage = ({ data, location }) => {
<IOBanner />
<div
css={css`
--sidebar-width: 377px;
--sidebar-width: 300px;
--banner-height: 308px;
display: grid;
grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
grid-template-areas: 'sidebar main';
grid-template-rows: 1fr auto;
grid-gap: 70px;
min-height: calc(100vh - var(--global-header-height));
margin: var(--banner-height) auto;
max-width: var(--site-max-width);
Expand Down Expand Up @@ -498,14 +499,14 @@ const QuickstartsPage = ({ data, location }) => {
<div
css={css`
display: grid;
grid-gap: 2rem;
grid-gap: 1.25rem;
grid-template-columns: repeat(4, 1fr);
grid-auto-rows: minmax(
var(--guide-list-row-height, 150px),
287px
);
@media (max-width: 1450px) {
@media (max-width: 1350px) {
grid-template-columns: repeat(3, 1fr);
}
Expand Down

0 comments on commit 7bb8b78

Please sign in to comment.