This commit is contained in:
Richard O'flynn 2020-11-27 09:14:34 +00:00
commit f17b35d848
4 changed files with 4 additions and 4 deletions

View file

@ -567,7 +567,7 @@ export type ColumnBreakpoint = ColumnSize | ColumnSizeDescriptor;
| noGutter | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to remove the gutter |
| noGutterLeft | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to remove the left gutter |
| noGutterRight | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to remove the right gutter |
| padding | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to add top and bottom padding this column |
| padding | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to add top and bottom padding to the column |
| aspectRatio | <code>let</code> | No | <code>"2x1" &#124; "16x9" &#124; "9x16" &#124; "1x2" &#124; "4x3" &#124; "3x4" &#124; "1x1"</code> | -- | Specify the aspect ratio of the column |
| sm | <code>let</code> | No | <code>ColumnBreakpoint</code> | -- | Set the small breakpoint |
| md | <code>let</code> | No | <code>ColumnBreakpoint</code> | -- | Set the medium breakpoint |

View file

@ -4817,7 +4817,7 @@
{
"name": "padding",
"kind": "let",
"description": "Set to `true` to add top and bottom padding this column",
"description": "Set to `true` to add top and bottom padding to the column",
"type": "boolean",
"value": "false",
"isFunction": false,

View file

@ -26,7 +26,7 @@
/** Set to `true` to remove the right gutter */
export let noGutterRight = false;
/** Set to `true` to add top and bottom padding this column */
/** Set to `true` to add top and bottom padding to the column */
export let padding = false;
/**

View file

@ -36,7 +36,7 @@ export interface ColumnProps extends svelte.JSX.HTMLAttributes<HTMLElementTagNam
noGutterRight?: boolean;
/**
* Set to `true` to add top and bottom padding this column
* Set to `true` to add top and bottom padding to the column
* @default false
*/
padding?: boolean;