Increase close icon in fs-modal and remove deprecated icon from library
This commit is contained in:
parent
ec57fc9b5c
commit
4fa4a33a68
|
@ -37,7 +37,7 @@ declare var ResizeObserver;
|
||||||
{{okButtonText}}
|
{{okButtonText}}
|
||||||
</button>
|
</button>
|
||||||
<button *ngIf="!okButton" class="uk-close uk-icon" (click)="cancel()">
|
<button *ngIf="!okButton" class="uk-close uk-icon" (click)="cancel()">
|
||||||
<icon name="close" ratio="1.5"></icon>
|
<icon name="close" ratio="2"></icon>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -2,8 +2,6 @@ import {NgModule} from "@angular/core";
|
||||||
import {CommonModule} from "@angular/common";
|
import {CommonModule} from "@angular/common";
|
||||||
import {FullScreenModalComponent} from "./full-screen-modal.component";
|
import {FullScreenModalComponent} from "./full-screen-modal.component";
|
||||||
import {IconsModule} from "../../icons/icons.module";
|
import {IconsModule} from "../../icons/icons.module";
|
||||||
import {IconsService} from "../../icons/icons.service";
|
|
||||||
import {close} from "../../icons/icons";
|
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [CommonModule, IconsModule],
|
imports: [CommonModule, IconsModule],
|
||||||
|
@ -11,7 +9,4 @@ import {close} from "../../icons/icons";
|
||||||
exports: [FullScreenModalComponent]
|
exports: [FullScreenModalComponent]
|
||||||
})
|
})
|
||||||
export class FullScreenModalModule {
|
export class FullScreenModalModule {
|
||||||
constructor(private iconsService: IconsService) {
|
|
||||||
this.iconsService.registerIcons([close])
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue