canActivate: [AuthGuardService, ChangePasswordGuardService],
canActivateChild: [AuthGuardService, ChangePasswordGuardService],
children: [
-<<<<<<< HEAD
{ path: 'dashboard', component: DeprecatedDashboardComponent },
{ path: 'dashboard_3', component: DashboardComponent },
-=======
- { path: 'dashboard', component: DashboardComponent },
- { path: 'dashboard_3', component: NewDashboardComponent },
->>>>>>> 5eabca4ef19 (Start of landing-page dashboard revamp v3)
{ path: 'error', component: ErrorComponent },
// Cluster
-@use './src/styles/vendor/variables' as vv;
-@use './src/styles/defaults/mixins';
-
-$card-font-min-width: 320px;
-$card-font-max-width: 2048px;
-$card-font-min-size: 12px;
-$card-font-max-size: 21px;
-
-.card {
- @include mixins.fluid-font-size(
- $card-font-min-width,
- $card-font-max-width,
- $card-font-min-size,
- $card-font-max-size
- );
- border: 0.5px solid vv.$gray-300;
- border-radius: 3px;
- height: 100%;
-
- .card-body {
- padding-top: 40px !important;
-
- .card-title {
- left: -0.6rem;
- position: absolute;
- top: -0.3rem;
- }
- }
-}
-
-.no-center {
- left: unset;
- position: unset;
- top: unset;
- transform: unset;
-}
-
-.content-highlight {
- font-weight: bold;
-}
import { SharedModule } from '~/app/shared/shared.module';
import { CephSharedModule } from '../shared/ceph-shared.module';
import { CardComponent } from './card/card.component';
+<<<<<<< HEAD
import { DashboardPieComponent } from './dashboard-pie/dashboard-pie.component';
+=======
+>>>>>>> 59d734f8b53 (mgr/dashboard: changes to first layout)
import { DashboardComponent } from './dashboard/dashboard.component';
@NgModule({
ReactiveFormsModule
],
+<<<<<<< HEAD
declarations: [DashboardComponent, CardComponent, DashboardPieComponent]
+=======
+ declarations: [DashboardComponent, CardComponent]
+>>>>>>> 59d734f8b53 (mgr/dashboard: changes to first layout)
})
export class NewDashboardModule {}