From 7102b42365d1d5d0c8364172e3b529084eecb109 Mon Sep 17 00:00:00 2001 From: filzrev <103790468+filzrev@users.noreply.github.com> Date: Thu, 21 Nov 2024 11:28:55 +0900 Subject: [PATCH] fix: Bootstrap variable override problem (#10412) fix: bootstrap variable override problem --- templates/modern/src/docfx.scss | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/templates/modern/src/docfx.scss b/templates/modern/src/docfx.scss index 67c36fb035f..a4a6d6d90ac 100644 --- a/templates/modern/src/docfx.scss +++ b/templates/modern/src/docfx.scss @@ -3,13 +3,12 @@ * The .NET Foundation licenses this file to you under the MIT license. */ -$enable-important-utilities: false; -$container-max-widths: ( - xxl: 1768px -) !default; - @use "mixins"; -@use "bootstrap/scss/bootstrap"; +@use "bootstrap/scss/bootstrap" with ( + $container-max-widths: ( + xxl: 1768px + ) +); @use "highlight"; @use "layout"; @use "nav";