mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 23:40:14 +01:00
refactor: migrate to use syntax
This commit is contained in:
parent
3add3ace55
commit
94baa67600
87 changed files with 141 additions and 157 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
@import '../../styles/themes';
|
@use '../../styles/themes' as *;
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
@use '@nebular/theme/styles/global/breakpoints' as *;
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
@import 'bootstrap/scss/mixins/breakpoints';
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
@use '../../styles/themes' as *;
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
@use '@nebular/theme/styles/global/breakpoints' as *;
|
||||||
@import '../../styles/themes';
|
@import 'bootstrap/scss/mixins/breakpoints';
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,4 @@
|
||||||
@import '../../styles/themes';
|
@use '../../styles/themes' as *;
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
.menu-sidebar ::ng-deep .scrollable {
|
.menu-sidebar ::ng-deep .scrollable {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
@import '../../styles/themes';
|
@use '../../styles/themes' as *;
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
@use '@nebular/theme/styles/global/breakpoints' as *;
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
@import 'bootstrap/scss/mixins/breakpoints';
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
.menu-sidebar ::ng-deep .scrollable {
|
.menu-sidebar ::ng-deep .scrollable {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,4 @@
|
||||||
@import '../../styles/themes';
|
@use '../../styles/themes' as *;
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
.menu-sidebar ::ng-deep .scrollable {
|
.menu-sidebar ::ng-deep .scrollable {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
@use '@nebular/theme/styles/globals' as *;
|
||||||
|
|
||||||
@mixin ngx-layout() {
|
@mixin ngx-layout() {
|
||||||
@include media-breakpoint-down(is) {
|
@include media-breakpoint-down(is) {
|
||||||
.row {
|
.row {
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,3 @@
|
||||||
@import './themes';
|
|
||||||
|
|
||||||
@mixin nb-overrides() {
|
@mixin nb-overrides() {
|
||||||
nb-select.size-medium button {
|
nb-select.size-medium button {
|
||||||
padding: 0.4375rem 2.2rem 0.4375rem 1.125rem !important;
|
padding: 0.4375rem 2.2rem 0.4375rem 1.125rem !important;
|
||||||
|
|
|
||||||
|
|
@ -1,22 +1,23 @@
|
||||||
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
|
@use 'sass:meta';
|
||||||
|
|
||||||
// themes - our custom or/and out of the box themes
|
// themes - our custom or/and out of the box themes
|
||||||
@import 'themes';
|
@use 'themes' as *;
|
||||||
|
|
||||||
// framework component themes (styles tied to theme variables)
|
// framework component themes (styles tied to theme variables)
|
||||||
@import '~@nebular/theme/styles/globals';
|
@use '@nebular/theme/styles/globals' as *;
|
||||||
@import '~@nebular/auth/styles/globals';
|
@use '@nebular/auth/styles/globals' as *;
|
||||||
|
|
||||||
@import '~bootstrap/scss/functions';
|
|
||||||
@import '~bootstrap/scss/variables';
|
|
||||||
@import '~bootstrap/scss/mixins';
|
|
||||||
@import '~bootstrap/scss/grid';
|
|
||||||
|
|
||||||
// loading progress bar theme
|
// loading progress bar theme
|
||||||
@import './pace.theme';
|
@use 'pace.theme' as *;
|
||||||
|
|
||||||
@import './layout';
|
@use 'layout' as *;
|
||||||
@import './overrides';
|
@use 'overrides' as *;
|
||||||
|
|
||||||
|
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
|
||||||
|
|
||||||
|
@import 'bootstrap/scss/functions';
|
||||||
|
@import 'bootstrap/scss/variables';
|
||||||
|
@import 'bootstrap/scss/mixins';
|
||||||
|
@import 'bootstrap/scss/grid';
|
||||||
|
|
||||||
// install the framework and custom global styles
|
// install the framework and custom global styles
|
||||||
@include nb-install() {
|
@include nb-install() {
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
|
@forward '@nebular/theme/styles/theming';
|
||||||
// @nebular theming framework
|
// @nebular theming framework
|
||||||
@import '~@nebular/theme/styles/theming';
|
@use '@nebular/theme/styles/theming' as *;
|
||||||
// @nebular out of the box themes
|
// @nebular out of the box themes
|
||||||
@import '~@nebular/theme/styles/themes';
|
@use '@nebular/theme/styles/themes';
|
||||||
|
|
||||||
$nb-themes: nb-register-theme((
|
$nb-themes: nb-register-theme((
|
||||||
layout-padding-top: 2.25rem,
|
layout-padding-top: 2.25rem,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
ngx-chartjs-pie,
|
ngx-chartjs-pie,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
ngx-d3-bar,
|
ngx-d3-bar,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
ngx-echarts-pie,
|
ngx-echarts-pie,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
nb-card {
|
nb-card {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
@import '../../@theme/styles/themes';
|
@use '../../@theme/styles/themes' as *;
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
@use '@nebular/theme/styles/global/breakpoints' as *;
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
@import 'bootstrap/scss/mixins/breakpoints';
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
.solar-card nb-card-header {
|
.solar-card nb-card-header {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
@use '@nebular/theme/styles/global/breakpoints' as *;
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
@import 'bootstrap/scss/mixins/breakpoints';
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
@use '@nebular/theme/styles/global/breakpoints' as *;
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
@import 'bootstrap/scss/mixins/breakpoints';
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
@use '@nebular/theme/styles/global/breakpoints' as *;
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
@import 'bootstrap/scss/mixins/breakpoints';
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
ngx-room-selector {
|
ngx-room-selector {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
@use '@nebular/theme/styles/global/breakpoints' as *;
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
@import 'bootstrap/scss/mixins/breakpoints';
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
nb-card {
|
nb-card {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
@use '@nebular/theme/styles/global/breakpoints' as *;
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
@import 'bootstrap/scss/mixins/breakpoints';
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
padding: 1.5rem 4.5rem;
|
padding: 1.5rem 4.5rem;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
.summary-container {
|
.summary-container {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
$legend-all-orders-color: #00977e;
|
$legend-all-orders-color: #00977e;
|
||||||
$legend-payment-color: #6935ca;
|
$legend-payment-color: #6935ca;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
@use '@nebular/theme/styles/global/breakpoints' as *;
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
@import 'bootstrap/scss/mixins/breakpoints';
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
@use '@nebular/theme/styles/global/breakpoints' as *;
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
@import 'bootstrap/scss/mixins/breakpoints';
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
@use '@nebular/theme/styles/global/breakpoints' as *;
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
@import 'bootstrap/scss/mixins/breakpoints';
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
@use '@nebular/theme/styles/global/breakpoints' as *;
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
@import 'bootstrap/scss/mixins/breakpoints';
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
ngx-earning-pie-chart,
|
ngx-earning-pie-chart,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
nb-card {
|
nb-card {
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
@import '~@nebular/theme/styles/global/typography/typography';
|
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
.flip-icon {
|
.flip-icon {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
$shadow-green: #00977e;
|
$shadow-green: #00977e;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
@use '@nebular/theme/styles/global/breakpoints' as *;
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
@import 'bootstrap/scss/mixins/breakpoints';
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
$slide-out-container-width: 40%;
|
$slide-out-container-width: 40%;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../../../@theme/styles/themes';
|
@use '../../../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
@use '@nebular/theme/styles/global/breakpoints' as *;
|
||||||
@import '../../../../@theme/styles/themes';
|
@import 'bootstrap/scss/mixins/breakpoints';
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
nb-card-header {
|
nb-card-header {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
.toggle-icon {
|
.toggle-icon {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
nb-card-header {
|
nb-card-header {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
display: block;
|
display: block;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
@use '@nebular/theme/styles/global/breakpoints' as *;
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
@import 'bootstrap/scss/mixins/breakpoints';
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
nb-card-header {
|
nb-card-header {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
@use '@nebular/theme/styles/global/breakpoints' as *;
|
||||||
@import '../../../@theme/styles/themes';
|
@import 'bootstrap/scss/mixins/breakpoints';
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
.calendars {
|
.calendars {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
@use '@nebular/theme/styles/global/breakpoints' as *;
|
||||||
|
@import 'bootstrap/scss/mixins/breakpoints';
|
||||||
@import '../../../@theme/styles/themes';
|
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
::ng-deep nb-layout-column {
|
::ng-deep nb-layout-column {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
.inputs-group-margin-bottom {
|
.inputs-group-margin-bottom {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
nb-select {
|
nb-select {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
.container {
|
.container {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
nb-progress-bar ~ nb-progress-bar {
|
nb-progress-bar ~ nb-progress-bar {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
button {
|
button {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
nb-tab {
|
nb-tab {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
button {
|
button {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
.buttons-row {
|
.buttons-row {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
nb-card-body {
|
nb-card-body {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
.accordion-container:first-child {
|
.accordion-container:first-child {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
:host {
|
:host {
|
||||||
display: block;
|
display: block;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
.list-card {
|
.list-card {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
input {
|
input {
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
@use '@nebular/theme/styles/global/breakpoints' as *;
|
||||||
|
@import 'bootstrap/scss/mixins/breakpoints';
|
||||||
@import '../../../@theme/styles/themes';
|
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
nb-card-body {
|
nb-card-body {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
nb-card {
|
nb-card {
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,3 @@
|
||||||
@import '~@nebular/theme/styles/core/mixins';
|
|
||||||
|
|
||||||
nb-card-body {
|
nb-card-body {
|
||||||
margin: 0 -0.5rem;
|
margin: 0 -0.5rem;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
.position-select {
|
.position-select {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
nb-card-body {
|
nb-card-body {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../../@theme/styles/themes';
|
@use '../../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
::ng-deep .form {
|
::ng-deep .form {
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
@import '~bootstrap/scss/mixins/breakpoints';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
@import '~@nebular/theme/styles/global/breakpoints';
|
@use '@nebular/theme/styles/global/breakpoints' as *;
|
||||||
|
@import 'bootstrap/scss/mixins/breakpoints';
|
||||||
@import '../../../@theme/styles/themes';
|
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
button + button {
|
button + button {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../@theme/styles/themes';
|
@use '../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
::ng-deep router-outlet + * {
|
::ng-deep router-outlet + * {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
nb-card {
|
nb-card {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
button[nbTreeGridRowToggle] {
|
button[nbTreeGridRowToggle] {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
.show-grid {
|
.show-grid {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
nb-card-body {
|
nb-card-body {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import '../../../@theme/styles/themes';
|
@use '../../../@theme/styles/themes' as *;
|
||||||
|
|
||||||
@include nb-install-component() {
|
@include nb-install-component() {
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue