diff --git a/docs/index.md b/docs/index.md index eb034b05d..87e198e09 100644 --- a/docs/index.md +++ b/docs/index.md @@ -11,6 +11,7 @@ * [Contributing](contributing.md) * [Contributing to Core Packages](contributing-to-packages.md) * [Debugging](debugging.md) +* [Your First Package](your-first-package.md) ### Advanced Topics @@ -19,6 +20,8 @@ * [Keymaps](advanced/keymaps.md) * [Serialization](advanced/serialization.md) * [Scopes and Scope Descriptors](advanced/scopes-and-scope-descriptors.md) +* [Theme Variables](theme-variables.md) +* [apm REST API](apm-rest-api.md) ### Upgrading to 1.0 APIs diff --git a/docs/theme-variables.md b/docs/theme-variables.md index ab033ccf2..0316fc215 100644 --- a/docs/theme-variables.md +++ b/docs/theme-variables.md @@ -24,7 +24,7 @@ Here's an example `.less` file that a package can define using theme variables: ```css @import "ui-variables"; -.my-selector{ +.my-selector { background-color: @base-background-color; padding: @component-padding; }