https://github.com/angular/angular
Raw File
Tip revision: e78a2a4a47be4dfb3934e51611ad20613836b9c8 authored by Andrew Scott on 29 March 2023, 19:37:48 UTC
release: cut the v15.2.5 release (#49635)
Tip revision: e78a2a4
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