Skip to content

Commit 67b76a2

Browse files
committed
chore: avoid warnings for styles
1 parent 77f9865 commit 67b76a2

File tree

1 file changed

+18
-5
lines changed

1 file changed

+18
-5
lines changed

examples-standalone/finance-portfolio/src/styles/_bootstrap.scss

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,21 @@ $container-max-widths: (
2020
xl: 1200px
2121
);
2222

23-
@import "bootstrap/scss/functions";
24-
@import "bootstrap/scss/variables";
25-
@import "bootstrap/scss/mixins";
26-
@import "bootstrap/scss/reboot";
27-
@import "bootstrap/scss/bootstrap";
23+
@use "bootstrap/scss/bootstrap" with (
24+
$font-family-base: "Roboto" #{"," } Helvetica#{"," } Arial#{"," } sans-serif,
25+
$grid-columns: 12,
26+
$grid-gutter-width: 32px,
27+
$grid-breakpoints: (
28+
xs: 0,
29+
sm: 576px,
30+
md: 768px,
31+
lg: 992px,
32+
xl: 1200px
33+
),
34+
$container-max-widths: (
35+
sm: 540px,
36+
md: 720px,
37+
lg: 992px,
38+
xl: 1200px
39+
)
40+
);

0 commit comments

Comments
 (0)