mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-21 09:50:13 +01:00
refactor(theme): theme refactor, buttons, toaster, preloader
This commit is contained in:
parent
d5f69647aa
commit
59ef144716
77 changed files with 1324 additions and 954 deletions
|
|
@ -0,0 +1,38 @@
|
|||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<div class="btn-shape-name">
|
||||
<span>Rectangle Button</span>
|
||||
</div>
|
||||
<div class="btn-shape-details">
|
||||
<span>Border radius:</span>
|
||||
<span>4px</span>
|
||||
</div>
|
||||
<div>
|
||||
<button class="btn btn-primary btn-rectangle btn-demo">Rectangle</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<div class="btn-shape-name">
|
||||
<span>Semi-round Button</span>
|
||||
</div>
|
||||
<div class="btn-shape-details">
|
||||
<span>Border radius:</span>
|
||||
<span>12px</span>
|
||||
</div>
|
||||
<div>
|
||||
<button class="btn btn-primary btn-semi-round btn-demo">Semi-round</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<div class="btn-shape-name">
|
||||
<span>Rounded Button</span>
|
||||
</div>
|
||||
<div class="btn-shape-details">
|
||||
<span>Border radius:</span>
|
||||
<span>round</span>
|
||||
</div>
|
||||
<div>
|
||||
<button class="btn btn-primary btn-round btn-demo">Round</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
.btn-shape-name {
|
||||
margin-bottom: 7px;
|
||||
}
|
||||
|
||||
.btn-shape-details {
|
||||
margin-bottom: 19px;
|
||||
|
||||
span:nth-child(2) {
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'ngx-shape-buttons',
|
||||
styleUrls: ['./shape-buttons.component.scss'],
|
||||
templateUrl: './shape-buttons.component.html',
|
||||
})
|
||||
export class ShapeButtonsComponent {
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue