docs: make css multiline in styleguide for consistency (#25300)

PR Close #25300
This commit is contained in:
maxv 2018-08-04 09:39:29 +03:00 committed by Kara Erickson
parent a3f1e2cb42
commit 6c359afce6
2 changed files with 8 additions and 2 deletions

View File

@ -23,7 +23,10 @@ import { Hero, HeroService } from './shared';
`,
styles: [`
.heroes {
margin: 0 0 2em 0; list-style-type: none; padding: 0; width: 15em;
margin: 0 0 2em 0;
list-style-type: none;
padding: 0;
width: 15em;
}
.heroes li {
cursor: pointer;

View File

@ -1,6 +1,9 @@
/* #docregion */
.heroes {
margin: 0 0 2em 0; list-style-type: none; padding: 0; width: 15em;
margin: 0 0 2em 0;
list-style-type: none;
padding: 0;
width: 15em;
}
.heroes li {
cursor: pointer;