Cronix7 years agoLevel 67ReplyReport SpamMaybe their userguide will help: https://tailwindcss.com/docs/fonts/ Like Reply
nhayder7 years agoLevel 13ReplyReport SpamTailwind doesn't do anything special to auto-import fonts or anything, so you need to import them the same way you would in a regular project, either by adding the Google stylesheet reference to the top of your HTML like this: <link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet"> ...or by importing your fonts with @font-face declarations at the beginning of your CSS file: @font-face { // here } https://github.com/tailwindcss/discuss/issues/177 Like Reply 1 like