머티리얼에서 부트스트랩 테마로 전환
버전 9.0
부터 우리 구성 요소에는 Bootstrap 4 및 ng-bootstrap에서 영감을 받은 새로운 테마가 포함되어 있습니다. Material
에서 Bootstrap
으로 전환하려면 내장 믹스인 중 하나를 사용할 수 있습니다.
Bootstrap Light Theme
@use "igniteui-angular/theming" as *;
// IMPORTANT: Prior to Ignite UI for Angular version 13 use:
// @import '~igniteui-angular/lib/core/styles/themes/index';
@include core();
@include bootstrap-light-theme($light-bootstrap-palette);
Bootstrap Dark Theme
@use "igniteui-angular/theming" as *;
// IMPORTANT: Prior to Ignite UI for Angular version 13 use:
// @import '~igniteui-angular/lib/core/styles/themes/index';
@include core();
@include bootstrap-dark-theme($dark-bootstrap-palette);
API Overview
에서 페이지 보기
GitHub