From 4a966c61925d9dc7e67d91a39f5f87b93ec97640 Mon Sep 17 00:00:00 2001 From: Michael Duane Mooring Date: Mon, 24 Oct 2016 10:26:15 -0400 Subject: [PATCH] docs(getting-started): Getting Started Theme example People are getting missing the step of using `import` on their `style.css` in the Material2 Getting Started Guide, myself included. See https://gitter.im/angular/material2?at=580e0befb6fc192f563642bf --- GETTING_STARTED.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/GETTING_STARTED.md b/GETTING_STARTED.md index 6204063179a8..39178f20521c 100644 --- a/GETTING_STARTED.md +++ b/GETTING_STARTED.md @@ -35,7 +35,17 @@ export class PizzaPartyAppModule { } ## Including core and theme styles: This is required to apply all of the core and theme styles to your application. -See the [theming guide](docs/theming.md) for instructions. +See the [Theming Guide](docs/theming.md) for instructions. + +**From the Theming Guide:** + +> If you're using Angular CLI, this is as simple as including one line in your `style.css` file: + +> `@import '~@angular/material/core/theming/prebuilt/deeppurple-amber.css';` + +> Alternatively, you can just reference the file directly. This would look something like: + +> `` ## Additional setup for `md-slide-toggle` and `md-slider`: