diff --git a/projects/common/src/fm/common.module.ts b/projects/common/src/fm/common.module.ts index cdd9728..5f25f4b 100644 --- a/projects/common/src/fm/common.module.ts +++ b/projects/common/src/fm/common.module.ts @@ -53,6 +53,7 @@ import * as commonActions from './actions/app-common.actions'; import * as commonReducers from './reducers/app-common.reducer'; import * as commonEffects from './effects/app-common.effects'; import { SecureOAuthStorage} from './shared/secureOAuthStorage'; +import { GradientComponent } from './gradient/gradient.component'; export { SafePipe, @@ -121,7 +122,8 @@ export { MenuBackgroundComponent, HasPackageDirective, HasClaimDirective, - UserMenuComponent + UserMenuComponent, + GradientComponent ], exports: [ NgbModule, @@ -141,7 +143,8 @@ export { MenuBackgroundComponent, HasPackageDirective, HasClaimDirective, - UserMenuComponent + UserMenuComponent, + GradientComponent ] }) export class AppCommonModule { diff --git a/projects/common/src/fm/gradient/gradient.component.html b/projects/common/src/fm/gradient/gradient.component.html new file mode 100644 index 0000000..dd83e53 --- /dev/null +++ b/projects/common/src/fm/gradient/gradient.component.html @@ -0,0 +1 @@ +
diff --git a/projects/common/src/fm/gradient/gradient.component.scss b/projects/common/src/fm/gradient/gradient.component.scss new file mode 100644 index 0000000..81c3c6a --- /dev/null +++ b/projects/common/src/fm/gradient/gradient.component.scss @@ -0,0 +1,4 @@ +.gradient { + height: 100%; + width: 100%; +} \ No newline at end of file diff --git a/projects/common/src/fm/gradient/gradient.component.spec.ts b/projects/common/src/fm/gradient/gradient.component.spec.ts new file mode 100644 index 0000000..63f5330 --- /dev/null +++ b/projects/common/src/fm/gradient/gradient.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { GradientComponent } from './gradient.component'; + +describe('GradientComponent', () => { + let component: GradientComponent; + let fixture: ComponentFixture