docs(action-sheet): document custom properties (#16250)

references #14850
This commit is contained in:
Cam Wiegert
2018-11-06 15:36:25 -06:00
committed by GitHub
parent 6d3042efe5
commit 2fcff2c263
2 changed files with 12 additions and 0 deletions

View File

@ -4,6 +4,10 @@
// --------------------------------------------------
:host {
/**
* @prop --width: Width of the action sheet
* @prop --max-width: Maximum width of the action sheet
*/
--width: #{$action-sheet-width};
--max-width: #{$action-sheet-max-width};

View File

@ -94,6 +94,14 @@ Type: `Promise<void>`
## CSS Custom Properties
| Name | Description |
| ------------- | --------------------------------- |
| `--max-width` | Maximum width of the action sheet |
| `--width` | Width of the action sheet |
----------------------------------------------
*Built with [StencilJS](https://stenciljs.com/)*