File tree Expand file tree Collapse file tree 1 file changed +22
-8
lines changed
src/tailwindcss-stubs/resources/assets/css Expand file tree Collapse file tree 1 file changed +22
-8
lines changed Original file line number Diff line number Diff line change 8
8
@tailwind preflight;
9
9
10
10
/**
11
- * Here you would import any custom component classes; stuff that you'd
12
- * want loaded *before* the utilities so that the utilities can still
11
+ * Here you would add any of your custom component classes; stuff that you'd
12
+ * want loaded *before* the utilities so that the utilities could still
13
13
* override them.
14
14
*
15
- * @import "my-components/foo";
16
- * @import "my-components/bar";
15
+ * Example:
16
+ *
17
+ * .btn { ... }
18
+ * .form-input { ... }
19
+ *
20
+ * Or if using a preprocessor:
21
+ *
22
+ * @import "components/buttons";
23
+ * @import "components/forms";
17
24
*/
18
25
19
26
/**
23
30
@tailwind utilities;
24
31
25
32
/**
26
- * Here you would add any custom utilities you need that don't come out of the box with Tailwind.
33
+ * Here you would add any custom utilities you need that don't come out of the
34
+ * box with Tailwind.
35
+ *
36
+ * Example :
37
+ *
38
+ * .bg-pattern-graph-paper { ... }
39
+ * .skew-45 { ... }
40
+ *
41
+ * Or if using a preprocessor..
27
42
*
28
- * .bg-hero-image {
29
- * background-image: url('/some/image/file.png');
30
- * }
43
+ * @import "utilities/backgrond-patterns";
44
+ * @import "utilities/skew-transforms";
31
45
*/
You can’t perform that action at this time.
0 commit comments