From 89e5b4d398361b74cc1312c4c7ebdede8824cf34 Mon Sep 17 00:00:00 2001 From: Matt Almeida Date: Mon, 30 Sep 2024 12:36:00 -0400 Subject: [PATCH 1/3] Add navbar-breakpoint as a CSS variable --- sass/components/navbar.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sass/components/navbar.scss b/sass/components/navbar.scss index 21414fc31..cbfced5d5 100644 --- a/sass/components/navbar.scss +++ b/sass/components/navbar.scss @@ -90,7 +90,7 @@ $navbar-divider-height: 0.125em !default; $navbar-bottom-box-shadow-size: 0 -0.125em 0 0 !default; -$navbar-breakpoint: iv.$desktop !default; +$navbar-breakpoint: cv.getVar("navbar-breakpoint") !default; $navbar-colors: dv.$colors !default; From 6497bbf58124111467eb5d21fa6366f87e804f0d Mon Sep 17 00:00:00 2001 From: Matt Almeida Date: Mon, 30 Sep 2024 12:48:19 -0400 Subject: [PATCH 2/3] Update derived-variables.scss --- sass/utilities/derived-variables.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sass/utilities/derived-variables.scss b/sass/utilities/derived-variables.scss index 6f1440d78..849b2ab51 100644 --- a/sass/utilities/derived-variables.scss +++ b/sass/utilities/derived-variables.scss @@ -1,6 +1,8 @@ @use "initial-variables" as iv; @use "functions" as fn; +$navbar-breakpoint: iv.$desktop !default; + // Scheme colors $scheme-main: iv.$white !default; From 824353b8225fd02fafdc9e24d3db38cdde5da617 Mon Sep 17 00:00:00 2001 From: Matt Almeida Date: Mon, 30 Sep 2024 12:51:33 -0400 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ed14379c..4ca0f5d0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Bulma Changelog +## Upcoming Release + +### Improvements + +- Add `$navbar-breakpoint` as a CSS variable + ## 1.0.3 ### Bug Fixes