Skip to content

Commit d2d3b4b

Browse files
committed
Use import without .css
1 parent 6bfa5f7 commit d2d3b4b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,11 @@ If you use Rails in the default mode without any pre-processor, you'll have to a
5959
If you followed the [official bootstrap installation guide](https://github.com/twbs/bootstrap-rubygem#a-ruby-on-rails), you'll probably have switched to SCSS. In this case add the following line to your `application.scss`:
6060

6161
```scss
62-
@import "rails_bootstrap_forms.css";
62+
@import "rails_bootstrap_forms";
63+
```
64+
or switch to the recommended `@use` syntax in Sass:
65+
```scss
66+
@use "rails_bootstrap_forms";
6367
```
6468

6569
## Usage

0 commit comments

Comments
 (0)