Merge pull request #232 from ChocolateLoverRaj/feature-custom-font-src

Change or disable font src
This commit is contained in:
Rhyne 2020-11-26 12:57:54 -05:00 committed by GitHub
commit ba94bb0932
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,8 +2,13 @@
Global PaperCSS Config
*/
// The src for fonts (false to disable)
$font-src: 'https://fonts.googleapis.com/css?family=Neucha|Patrick+Hand+SC' !default;
// Imports
@import url('https://fonts.googleapis.com/css?family=Neucha|Patrick+Hand+SC');
@if $font-src {
@import url($font-src);
}
// Set theme colors
$primary: #41403e !default;