You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/docs/functions-and-directives.blade.md
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ Tailwind exposes a few custom CSS functions and directives that can be used in y
8
8
9
9
### `@@tailwind`
10
10
11
-
Use the `@@tailwind` directive to insert Tailwind's `preflight`and `utilities` styles into your CSS. Here's a full example of how you might do this:
11
+
Use the `@@tailwind` directive to insert Tailwind's `preflight`, `utilities`and `screen` styles into your CSS. Here's a full example of how you might do this:
12
12
13
13
```less
14
14
/**
@@ -25,6 +25,13 @@ Use the `@@tailwind` directive to insert Tailwind's `preflight` and `utilities`
25
25
* config file.
26
26
*/
27
27
@@tailwind utilities;
28
+
29
+
/**
30
+
* (Optional)
31
+
* This injects the utility classes and styles wrapped by the @@responsive directive.
32
+
* These will be appended at the end of the stylesheet if the `@@tailwind screens` directive is not used.
0 commit comments