feat(grid): support narrow prop for Grid, Row

This commit is contained in:
Eric Liu 2020-07-24 21:31:39 -07:00
commit 77b4d32c62
3 changed files with 30 additions and 0 deletions

View file

@ -1,6 +1,7 @@
<script>
export let as = false;
export let condensed = false;
export let narrow = false;
export let noGutter = false;
export let noGutterLeft = false;
export let noGutterRight = false;
@ -11,6 +12,7 @@
$$restProps.class,
"bx--row",
condensed && "bx--row--condensed",
narrow && "bx--row--narrow",
noGutter && "bx--no-gutter",
noGutterLeft && "bx--no-gutter--left",
noGutterRight && "bx--no-gutter--right",