Created
November 16, 2017 11:03
-
-
Save jacobedawson/7cd75dd5d84a160239f384a426e98401 to your computer and use it in GitHub Desktop.
Angular Material Example Main Styles
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* You can add global styles to this file, and also import other style files */ | |
@import "~@angular/material/prebuilt-themes/indigo-pink.css"; // import a base theme | |
// import your custom theme | |
@import './sass/mytheme.scss'; | |
// include your custom theme with a class | |
.mytheme { | |
@include angular-material-theme($mytheme); | |
} | |
// example other global styles | |
body { | |
font-family: 'Open Sans', sans-serif; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment