Skip to content

Commit

Permalink
clean up display
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidWells committed Apr 24, 2019
1 parent 864c340 commit a8f1b31
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/commands/deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Deploys from the build settings found in the netlify.toml file, or settings from

The following environment variables can be used to override configuration file lookups and prompts:

- `NETLIFY_AUTH_TOKEN` - an access token to use when authenticating commands. KEEP THIS VALUE PRIVATE
- `NETLIFY_AUTH_TOKEN` - an access token to use when authenticating commands. Keep this value private.
- `NETLIFY_SITE_ID` - override any linked site in the current working directory.

Lambda functions in the function folder can be in the following configurations for deployment:
Expand Down
2 changes: 1 addition & 1 deletion docs/commands/login.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description: Login to your Netlify account
<!-- AUTO-GENERATED-CONTENT:START (GENERATE_COMMANDS_DOCS) -->
Login to your Netlify account

Opens a web browser to acquire an OAuth token. Use NETLIFY_WEB_UI to set the base URL of the ticket URL.
Opens a web browser to acquire an OAuth token.


**Usage**
Expand Down
13 changes: 10 additions & 3 deletions site/src/_layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,16 @@ export const Root = styled.div`
pre {
line-height: 26px;
}
li code {
background: #e6e6e6;
padding: 2px 8px;
padding: 4px 8px;
background: #f1f1f1;
border-radius: 4px;
}
.doc-content li {
margin-bottom: 15px;
line-height: 26px;
}
`;

export const Sidebar = styled('div')([], {
Expand Down Expand Up @@ -532,7 +537,9 @@ export default class Layout extends React.Component {
</EditLink> */}
<Wrapper>
<Content>
{children}
<div className='doc-content'>
{children}
</div>
</Content>
{!opts.hidePagination && <Pagination {...pagination} />}
</Wrapper>
Expand Down

0 comments on commit a8f1b31

Please sign in to comment.