diff --git a/app/javascript/stylesheets/base.scss b/app/javascript/stylesheets/base.scss index 1ca5f51..68ebb8b 100644 --- a/app/javascript/stylesheets/base.scss +++ b/app/javascript/stylesheets/base.scss @@ -1,17 +1,10 @@ @layer base { - @font-face { - font-family: 'Raleway'; - src: url('/fonts/raleway-light.woff') format('woff2'); - font-weight: 300; - font-style: normal; - } - body { line-height: 1; } h1, h2, h3 { - @apply font-heading font-light; + @apply font-light; } h1 { diff --git a/app/javascript/stylesheets/tailwind.config.js b/app/javascript/stylesheets/tailwind.config.js index c24557e..b8407c9 100644 --- a/app/javascript/stylesheets/tailwind.config.js +++ b/app/javascript/stylesheets/tailwind.config.js @@ -13,7 +13,7 @@ module.exports = { theme: { extend: { fontFamily: { - heading: ['Raleway'] + sans: ['Open Sans', 'sans-serif'] } }, },