
wszystkie te wartosci w css musze po ustawiac na swoje progi?
znalazlem rowniez cos takiego:
You need to override the $grid-breakpoints and $container-max-widths variables BEFORE importing the Bootstrap sources. Here a working example (scss):
// File: theme.scss
// Override default BT variables:
$grid-breakpoints: (
xs: 0,
sm: 576px,
md: 768px,
lg: 992px,
xl: 1200px,
xxl: 1900px
);
$container-max-widths: (
sm: 540px,
md: 720px,
lg: 960px,
xl: 1140px,
xxl: 1610px
);
// Import BT sources
@import "../node_modules/bootstrap/scss/bootstrap";
// Your CSS (SASS) rules here...
wiec wystarczy ze na poczatku swojego style.css dopisze sobie swoje wartosci aby nadpisac te imporotwane z bootstrapa?