https://github.com/angular/angular
Raw File
Tip revision: b9aeb858d528c8c229be13a754cc36084bffcbdf authored by Andrew Kushnir on 10 May 2023, 18:08:20 UTC
release: cut the v16.0.1 release
Tip revision: b9aeb85
main.scss
// import directories
@use './0-base' as base;
@use './1-layouts' as layouts;
@use './2-modules' as modules;

// import print styles
@use './print';

@use '@angular/material' as mat;

// Include the base styles for Angular Material core. We include this here so that you only
// have to load a single css file for Angular Material in your app.
// TODO(v15): As of v15 mat.legacy-core no longer includes default typography styles.
//  The following line adds:
//    1. Default typography styles for all components
//    2. Styles for typography hierarchy classes (e.g. .mat-headline-1)
//  If you specify typography styles for the components you use elsewhere, you should delete this line.
//  If you don't need the default component typographies but still want the hierarchy styles,
//  you can delete this line and instead use:
//    `@include mat.legacy-typography-hierarchy(mat.define-legacy-typography-config());`
@include mat.all-legacy-component-typographies();
@include mat.legacy-core();
back to top