We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02c8ab9 commit 5a0a595Copy full SHA for 5a0a595
src/cdk/dialog/dialog.md
@@ -11,6 +11,14 @@ the prebuilt styles in your global stylesheet:
11
@import '@angular/cdk/overlay-prebuilt.css';
12
```
13
14
+Alternatively, you can include the styles using the `cdk.overlay` mixin in your Sass file. You can import the mixin as follows:
15
+
16
+```scss
17
+@use '@angular/cdk' as cdk;
18
19
+@include cdk.overlay();
20
+```
21
22
<!-- example(cdk-dialog-overview) -->
23
24
You can open a dialog by calling the `open` method either with a component or with a `TemplateRef`
0 commit comments