From 1ad5c0852bf6f064c6de0867bd904ab54e90ebaa Mon Sep 17 00:00:00 2001 From: Miles Malerba Date: Fri, 27 Oct 2017 14:30:12 -0700 Subject: [PATCH] address comments --- src/lib/sidenav/sidenav.md | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/src/lib/sidenav/sidenav.md b/src/lib/sidenav/sidenav.md index 788a28655dd5..36736d202fb3 100644 --- a/src/lib/sidenav/sidenav.md +++ b/src/lib/sidenav/sidenav.md @@ -9,10 +9,11 @@ represents the added side content. -There are also drawer components, ``, ``, and -``, which are analogous to their sidenav equivalents. Rather than adding side content -to the app as a whole, these are designed to add side content to a small section of your app. They -support almost all of the same features, but do not support fixed positioning. +The drawer component is designed to add side content to a small section of your app. This is +accomplished using the ``, ``, and `` +components, which are analogous to their sidenav equivalents. Rather than adding side content to the +app as a whole, these are designed to add side content to a small section of your app. They support +almost all of the same features, but do not support fixed positioning. @@ -25,7 +26,7 @@ of the container. The side content should be wrapped in a `` element. The `position` property can be used to specify which end of the main content to place the side content on. `position` can be either `start` or `end` which places the side content on the left or right respectively in left-to-right -languages. If the `position` is not set, the `start` end will be assumed. A +languages. If the `position` is not set, the default value of `start` will be assumed. A `` can have up to two `` elements total, but only one for any given side. @@ -39,6 +40,7 @@ of it. The following are examples of valid sidenav layouts: ```html + Start Main @@ -46,6 +48,7 @@ The following are examples of valid sidenav layouts: ``` ```html + Start End @@ -54,12 +57,14 @@ The following are examples of valid sidenav layouts: ``` ```html + ``` And these are examples of invalid sidenav layouts: ```html + Start Start 2 @@ -67,6 +72,7 @@ And these are examples of invalid sidenav layouts: ``` ```html + Main Main 2 @@ -74,6 +80,7 @@ And these are examples of invalid sidenav layouts: ``` ```html + ```