mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-21 09:50:13 +01:00
feat(dashboard): add cards for the contacts & room
This commit is contained in:
parent
9e62e5d164
commit
b4128d3375
4 changed files with 31 additions and 2 deletions
|
|
@ -1,5 +1,7 @@
|
||||||
@import '~@nga/theme/styles/all';
|
@import '~@nga/theme/styles/all';
|
||||||
@include nga-themes-install();
|
@include nga-themes-install() {
|
||||||
|
// write global styles here
|
||||||
|
}
|
||||||
|
|
||||||
@import '~@nga/auth/styles/all';
|
@import '~@nga/auth/styles/all';
|
||||||
@include nga-auth-install();
|
@include nga-auth-install();
|
||||||
|
|
|
||||||
|
|
@ -23,3 +23,26 @@
|
||||||
</nga-card>
|
</nga-card>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-9">
|
||||||
|
<nga-card size="xmedium">
|
||||||
|
<nga-card-header>
|
||||||
|
Room Management
|
||||||
|
</nga-card-header>
|
||||||
|
</nga-card>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-3">
|
||||||
|
<nga-card size="xmedium" class="contacts">
|
||||||
|
<nga-tabset fullWidth>
|
||||||
|
<nga-tab tabTitle="Contacts">
|
||||||
|
<span>Content #1</span>
|
||||||
|
</nga-tab>
|
||||||
|
<nga-tab tabTitle="Recent">
|
||||||
|
<span>Content #2</span>
|
||||||
|
</nga-tab>
|
||||||
|
</nga-tabset>
|
||||||
|
</nga-card>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -5,4 +5,8 @@
|
||||||
nga-card-header {
|
nga-card-header {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
nga-card.contacts nga-tabset /deep/ ul {
|
||||||
|
border-bottom: 1px solid nga-theme(separator);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
import { Component } from '@angular/core';
|
import { Component } from '@angular/core';
|
||||||
import * as L from 'leaflet';
|
|
||||||
|
|
||||||
|
import * as L from 'leaflet';
|
||||||
import 'style-loader!leaflet/dist/leaflet.css';
|
import 'style-loader!leaflet/dist/leaflet.css';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue