diff --git a/src/app/pages/forms/form-layouts/form-layouts.component.html b/src/app/pages/forms/form-layouts/form-layouts.component.html index 0e71dab6..33ff8580 100644 --- a/src/app/pages/forms/form-layouts/form-layouts.component.html +++ b/src/app/pages/forms/form-layouts/form-layouts.component.html @@ -6,21 +6,14 @@
- - - - -
+ +
@
- +
-
- + Remember me
- @@ -49,22 +42,25 @@ Radios
- +
- +
- +
@@ -72,9 +68,7 @@
- + Check me out
@@ -122,10 +116,7 @@
- + Check me out
@@ -192,10 +183,7 @@
- + Remember me
diff --git a/src/app/pages/forms/form-layouts/form-layouts.component.scss b/src/app/pages/forms/form-layouts/form-layouts.component.scss new file mode 100644 index 00000000..ee48ae6f --- /dev/null +++ b/src/app/pages/forms/form-layouts/form-layouts.component.scss @@ -0,0 +1,11 @@ +.form-inline { + display: flex; + + .fullname { + flex: 1; + } + + .username { + flex: 1; + } +} diff --git a/src/app/pages/forms/form-layouts/form-layouts.component.ts b/src/app/pages/forms/form-layouts/form-layouts.component.ts index aab7e4b6..2c902353 100644 --- a/src/app/pages/forms/form-layouts/form-layouts.component.ts +++ b/src/app/pages/forms/form-layouts/form-layouts.component.ts @@ -2,6 +2,7 @@ import { Component } from '@angular/core'; @Component({ selector: 'ngx-form-layouts', + styleUrls: ['./form-layouts.component.scss'], templateUrl: './form-layouts.component.html', }) export class FormLayoutsComponent {