Skip to content

Commit 7e759ac

Browse files
author
Patrick Heller 💩
committed
add to the docs
1 parent 55f3f93 commit 7e759ac

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

docs/source/docs/functions-and-directives.blade.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Tailwind exposes a few custom CSS functions and directives that can be used in y
88

99
### `@@tailwind`
1010

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:
1212

1313
```less
1414
/**
@@ -25,6 +25,13 @@ Use the `@@tailwind` directive to insert Tailwind's `preflight` and `utilities`
2525
* config file.
2626
*/
2727
@@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.
33+
*/
34+
@@tailwind screens;
2835
```
2936

3037
### `@@apply`

0 commit comments

Comments
 (0)