Skip to content

Commit

Permalink
chore: Add divider styling to right rail
Browse files Browse the repository at this point in the history
  • Loading branch information
LizBaker committed Nov 4, 2021
1 parent 542758e commit 31c612e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/templates/QuickstartDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -335,17 +335,35 @@ const QuickstartDetails = ({ data, location }) => {
</li>
</ol>
</PageTools.Section>
<aside
data-swiftype-index={false}
css={css`
border-bottom: 1px solid var(--divider-color);
`}
/>
<PageTools.Section>
<PageTools.Title>Authors</PageTools.Title>
<p>{quickstart.authors.join(', ')}</p>
</PageTools.Section>
<aside
data-swiftype-index={false}
css={css`
border-bottom: 1px solid var(--divider-color);
`}
/>
<PageTools.Section>
<PageTools.Title>Support</PageTools.Title>
<SupportSection
supportLevel={quickstart.level}
onClick={tessenSupportTrack(quickstart)}
/>
</PageTools.Section>
<aside
data-swiftype-index={false}
css={css`
border-bottom: 1px solid var(--divider-color);
`}
/>
<PageTools.Section>
<RelatedResources
css={css`
Expand All @@ -354,6 +372,12 @@ const QuickstartDetails = ({ data, location }) => {
resources={quickstart.relatedResources}
/>
</PageTools.Section>
<aside
data-swiftype-index={false}
css={css`
border-bottom: 1px solid var(--divider-color);
`}
/>
</Layout.PageTools>
</PageLayout>
</Tabs>
Expand Down

0 comments on commit 31c612e

Please sign in to comment.