mirror of
https://github.com/danog/sass-site.git
synced 2024-11-27 04:24:50 +01:00
26 lines
383 B
Plaintext
26 lines
383 B
Plaintext
```shellsession
|
|
$ cat style.scss
|
|
$body-bg: #000;
|
|
$body-color: #111;
|
|
|
|
@import "bootstrap";
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
.navbar {
|
|
display: block;
|
|
}
|
|
}
|
|
$ sass-migrator --migrate-deps module style.scss
|
|
$ cat style.scss
|
|
@use "bootstrap" with (
|
|
$body-bg: #000,
|
|
$body-color: #111
|
|
);
|
|
|
|
@include bootstrap.media-breakpoint-up(sm) {
|
|
.navbar {
|
|
display: block;
|
|
}
|
|
}
|
|
```
|