Skip to content

Commit 5a92143

Browse files
committed
docs: update content
1 parent bdc0bb2 commit 5a92143

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

docs/content/getting-started/parcel.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,13 +123,17 @@ Importing CoreUI into Parcel requires two imports, one into our `styles.scss` an
123123
{{< callout-dart-sass-modules >}}
124124

125125
```scss
126-
// Import all of CoreUI's CSS
126+
// Use all of CoreUI's CSS
127127
@use "~@coreui/coreui/scss/coreui";
128+
129+
// Or use all of CoreUI PRO's CSS
130+
@use "~@coreui/coreui-pro/scss/coreui";
128131
```
129132

130133
{{< callout-dart-sass-deprecations >}}
131134

132135
```scss
136+
// Import all of CoreUI's CSS
133137
@import "~@coreui/coreui/scss/coreui";
134138

135139
// Or import all of CoreUI PRO's CSS

docs/content/getting-started/vite.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,11 @@ In the next and final section to this guide, we’ll import all of CoreUI’s CS
159159
{{< callout-dart-sass-modules >}}
160160

161161
```scss
162-
// Import all of CoreUI's CSS
162+
// Use all of CoreUI's CSS
163163
@use "~@coreui/coreui/scss/coreui";
164+
165+
// Or use all of CoreUI PRO's CSS
166+
@use "~@coreui/coreui-pro/scss/coreui";
164167
```
165168

166169
{{< callout-dart-sass-deprecations >}}

docs/content/getting-started/webpack.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,13 +195,17 @@ Importing CoreUI into Webpack requires the loaders we installed in the first sec
195195
{{< callout-dart-sass-modules >}}
196196

197197
```scss
198-
// Import all of CoreUI's CSS
198+
// Use all of CoreUI's CSS
199199
@use "~@coreui/coreui/scss/coreui";
200+
201+
// Or use all of CoreUI PRO's CSS
202+
@use "~@coreui/coreui-pro/scss/coreui";
200203
```
201204

202205
{{< callout-dart-sass-deprecations >}}
203206

204207
```scss
208+
// Import all of CoreUI's CSS
205209
@import "~@coreui/coreui/scss/coreui";
206210

207211
// Or import all of CoreUI PRO's CSS

0 commit comments

Comments
 (0)