We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bea70e commit 017135aCopy full SHA for 017135a
packages/flex-layout/src/directives/flex-bottom-indent.directive.ts
@@ -4,7 +4,9 @@ import { AbstractFlexLayoutDirective } from './abstract-flex-layout.directive';
4
5
@Directive({ selector: '[flex-bottom-indent]' })
6
export class FlexBottomIndentDirective extends AbstractFlexLayoutDirective implements AfterViewInit {
7
- @Input('flex-bottom-indent') @HostBinding('style.margin-bottom.px') public bottomIndent: number | null = null;
+ @Input('flex-bottom-indent')
8
+ @HostBinding('style.margin-bottom.px')
9
+ public bottomIndent: string | number | null = null;
10
11
constructor(protected readonly el: ElementRef) {
12
super();
0 commit comments