From 6c359afce6ebc8f41ccf15a06e1c85258ce6d240 Mon Sep 17 00:00:00 2001 From: maxv Date: Sat, 4 Aug 2018 09:39:29 +0300 Subject: [PATCH] docs: make css multiline in styleguide for consistency (#25300) PR Close #25300 --- .../src/05-04/app/heroes/heroes.component.avoid.ts | 5 ++++- .../styleguide/src/05-04/app/heroes/heroes.component.css | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/aio/content/examples/styleguide/src/05-04/app/heroes/heroes.component.avoid.ts b/aio/content/examples/styleguide/src/05-04/app/heroes/heroes.component.avoid.ts index 8bce611048..89e5d1b010 100644 --- a/aio/content/examples/styleguide/src/05-04/app/heroes/heroes.component.avoid.ts +++ b/aio/content/examples/styleguide/src/05-04/app/heroes/heroes.component.avoid.ts @@ -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; diff --git a/aio/content/examples/styleguide/src/05-04/app/heroes/heroes.component.css b/aio/content/examples/styleguide/src/05-04/app/heroes/heroes.component.css index 82f0c1d0ab..f042cd85f7 100644 --- a/aio/content/examples/styleguide/src/05-04/app/heroes/heroes.component.css +++ b/aio/content/examples/styleguide/src/05-04/app/heroes/heroes.component.css @@ -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;