Skip to content

Commit

Permalink
fix(css): tailwind directives name
Browse files Browse the repository at this point in the history
  • Loading branch information
marcjulian committed May 18, 2021
1 parent 0514ac5 commit 20896a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ng-add/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,9 @@ function updateStyles(options: Schema, workspace: WorkspaceDefinition): Rule {
* Used for css stylesheets
*/
function getTailwindDirectives(): string {
return `@tailwind 'tailwindcss/base';\n
@tailwind 'tailwindcss/components';\n
@tailwind 'tailwindcss/utilities';\n`;
return `@tailwind base;\n
@tailwind components;\n
@tailwind utilities;\n`;
}

/**
Expand Down

0 comments on commit 20896a4

Please sign in to comment.