Skip to content

Replace inline styles with docs-container class #463

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/dummy/app/pods/docs/quickstart/template.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ AddonDocs comes with some components to help you showcase your addon. Let's add
{{#docs-snippet name="quickstart-marketing-index.hbs" title="tests/dummy/app/templates/index.hbs"}}
{{docs-hero}}

<div style="max-width: 40rem; margin: 0 auto; padding: 0 1.5rem">
<div class="docs-container">
{{#docs-demo as |demo|}}
{{#demo.example name="my-demo.hbs"}}
<p>Make sure to read up on the DocsDemo component before building out this page.</p>
Expand Down Expand Up @@ -153,7 +153,7 @@ Add the following route to the end of your router and create the associated temp
{{/docs-snippet}}

{{#docs-snippet name="quickstart-404.hbs" title="tests/dummy/app/templates/not-found.hbs"}}
<div style="max-width: 40rem; margin: 0 auto; padding: 0 1.5rem">
<div class="docs-container">
<h1>Not found</h1>
<p>This page doesn't exist. {{#docs-link "index"}}Head home?{{/docs-link}}</p>
</div>
Expand Down