Skip to content

Commit cb1ceb6

Browse files
authored
Merge pull request #21 from tailwindcss/remove-less-comments
Remove Less-style comments from CSS file example in installation docs
2 parents c198717 + ac26b76 commit cb1ceb6

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

docs/source/docs/installation.blade.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,10 @@ To avoid specificity issues, we highly recommend structuring your main styleshee
5050
* Here you would import any custom component classes; stuff that you'd
5151
* want loaded *before* the utilities so that the utilities can still
5252
* override them.
53+
*
54+
* @@import "my-components/foo";
55+
* @@import "my-components/bar";
5356
*/
54-
// @@import "my-components/foo";
55-
// @@import "my-components/bar";
5657

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

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

7173
## 4. Process your CSS with Tailwind

0 commit comments

Comments
 (0)