From 7e759ac7e9a18b2e2d45e0e661cc6987bf673188 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Heller=20=F0=9F=92=A9?= Date: Wed, 8 Nov 2017 20:30:37 +0100 Subject: [PATCH] add to the docs --- docs/source/docs/functions-and-directives.blade.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/source/docs/functions-and-directives.blade.md b/docs/source/docs/functions-and-directives.blade.md index 4efd483d3..8b9a40033 100644 --- a/docs/source/docs/functions-and-directives.blade.md +++ b/docs/source/docs/functions-and-directives.blade.md @@ -8,7 +8,7 @@ Tailwind exposes a few custom CSS functions and directives that can be used in y ### `@@tailwind` -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: +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: ```less /** @@ -25,6 +25,13 @@ Use the `@@tailwind` directive to insert Tailwind's `preflight` and `utilities` * config file. */ @@tailwind utilities; + +/** + * (Optional) + * This injects the utility classes and styles wrapped by the @@responsive directive. + * These will be appended at the end of the stylesheet if the `@@tailwind screens` directive is not used. + */ + @@tailwind screens; ``` ### `@@apply`