File

src/app/app.component.ts

Description

App component of the application

Metadata

import { Component } from '@angular/core';

/** App component of the application */
@Component({
  selector: 'ccf-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.scss'],
})
export class AppComponent {}
<ccf-toolbar class="toolbar-class"></ccf-toolbar>
<router-outlet></router-outlet>
<div class="filler"></div>
<ccf-bottom-toolbar></ccf-bottom-toolbar>

./app.component.scss

:host {
  display: flex;
  width: 100%;
  min-height: calc(100% - 3.5rem);
  flex-direction: column;
  align-items: center;
  padding-top: 3.5rem;
  overflow: auto;

  .filler {
    flex-grow: 1;
  }

  .toolbar-class {
    position: fixed;
    top: 0;
    z-index: 100;
    background-color: #444c65;
    box-shadow: 0rem 0.063rem 0.188rem 0.063rem rgb(0 0 0 / 41%);
  }
}
Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""