Skip to content

Remove Less-style comments from CSS file example in installation docs #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 1, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions docs/source/docs/installation.blade.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,10 @@ To avoid specificity issues, we highly recommend structuring your main styleshee
* Here you would import any custom component classes; stuff that you'd
* want loaded *before* the utilities so that the utilities can still
* override them.
*
* @@import "my-components/foo";
* @@import "my-components/bar";
*/
// @@import "my-components/foo";
// @@import "my-components/bar";

/**
* This injects all of Tailwind's utility classes, generated based on your
Expand All @@ -61,11 +62,12 @@ To avoid specificity issues, we highly recommend structuring your main styleshee
@@tailwind utilities;

/**
* Here you would add any custom utilities you need that don't come out of the box with Tailwind.
* Here you would add any custom utilities you need that don't come out of the
* box with Tailwind.
*
* @@import "my-utilities/background-images";
* @@import "my-utilities/skew-transforms";
*/
// .bg-hero-image {
// background-image: url('/some/image/file.png');
// }
```

## 4. Process your CSS with Tailwind
Expand Down