File tree 1 file changed +0
-57
lines changed
src/tailwindcss-stubs/resources/css 1 file changed +0
-57
lines changed Original file line number Diff line number Diff line change 1
- /**
2
- * This injects Tailwind's base styles, which is a combination of
3
- * Normalize.css and some additional base styles.
4
- *
5
- * You can see the styles here:
6
- * https://unpkg.com/tailwindcss/dist/base.css
7
- *
8
- * If using `postcss-import`, use this import instead:
9
- *
10
- * @import "tailwindcss/base";
11
- */
12
1
@tailwind base;
13
2
14
- /**
15
- * This injects any component classes registered by plugins.
16
- *
17
- * If using `postcss-import`, use this import instead:
18
- *
19
- * @import "tailwindcss/components";
20
- */
21
3
@tailwind components;
22
4
23
- /**
24
- * Here you would add any of your custom component classes; stuff that you'd
25
- * want loaded *before* the utilities so that the utilities could still
26
- * override them.
27
- *
28
- * Example:
29
- *
30
- * .btn { ... }
31
- * .form-input { ... }
32
- *
33
- * Or if using a preprocessor or `postcss-import`:
34
- *
35
- * @import "components/buttons";
36
- * @import "components/forms";
37
- */
38
-
39
- /**
40
- * This injects all of Tailwind's utility classes, generated based on your
41
- * config file.
42
- *
43
- * If using `postcss-import`, use this import instead:
44
- *
45
- * @import "tailwindcss/utilities";
46
- */
47
5
@tailwind utilities;
48
-
49
- /**
50
- * Here you would add any custom utilities you need that don't come out of the
51
- * box with Tailwind.
52
- *
53
- * Example :
54
- *
55
- * .bg-pattern-graph-paper { ... }
56
- * .skew-45 { ... }
57
- *
58
- * Or if using a preprocessor or `postcss-import`:
59
- *
60
- * @import "utilities/background-patterns";
61
- * @import "utilities/skew-transforms";
62
- */
You can’t perform that action at this time.
0 commit comments