mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-18 00:10:14 +01:00
fix(buttons): improve buttons styles for default theme
This commit is contained in:
parent
fd37cd7a76
commit
7e86c985cb
13 changed files with 344 additions and 275 deletions
|
|
@ -13,7 +13,6 @@ import { UserService } from '../../../@core/data/users.service';
|
|||
<div class="logo" (click)="goToHome()">NgX <span>Admin</span></div>
|
||||
<div class="theme-buttons">
|
||||
<button class="btn btn-hero-primary" (click)="selectCosmicTheme()">Cosmic</button>
|
||||
<button class="btn btn-hero-warning" (click)="selectLightTheme()">Light</button>
|
||||
<button class="btn btn-hero-info" (click)="selectDefaultTheme()">Default</button>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -80,10 +79,6 @@ export class HeaderComponent implements OnInit {
|
|||
this.themeService.changeTheme('cosmic');
|
||||
}
|
||||
|
||||
selectLightTheme() {
|
||||
this.themeService.changeTheme('light');
|
||||
}
|
||||
|
||||
selectDefaultTheme() {
|
||||
this.themeService.changeTheme('default');
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue