From e362ae032e560703ea7ea8b985f17a4f09a1fdde Mon Sep 17 00:00:00 2001 From: "Andrey V.Kosteltsev" Date: Wed, 22 Jun 2022 21:05:10 +0300 Subject: [PATCH] bootstrap: grid for large media --- src/assets/styles/bmc/custom/_bootstrap-grid.scss | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/assets/styles/bmc/custom/_bootstrap-grid.scss b/src/assets/styles/bmc/custom/_bootstrap-grid.scss index 7ad7c81b..3badf048 100644 --- a/src/assets/styles/bmc/custom/_bootstrap-grid.scss +++ b/src/assets/styles/bmc/custom/_bootstrap-grid.scss @@ -5,4 +5,17 @@ // so the content doesn't center align // https://bootstrap-vue.org/docs/components/layout#fluid-width-container margin-left: 0; -} \ No newline at end of file +} + +@media (min-width: 1200px) { + .container-xl { + max-width: unset !important; + } + .col-md-9, + .col-xl-9, + .col-xl-10, + .col-xl-11 { + flex: 0 0 100%; + max-width: unset !important; + } +} -- 2.35.1