diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f39bb9993..caddb8e6e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -27,6 +27,7 @@ jobs: tests: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: os: [ubuntu-latest] python-version: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"] diff --git a/src/pydata_sphinx_theme/assets/styles/sections/_sidebar-toggle.scss b/src/pydata_sphinx_theme/assets/styles/sections/_sidebar-toggle.scss index e1599d0de..95657b53b 100644 --- a/src/pydata_sphinx_theme/assets/styles/sections/_sidebar-toggle.scss +++ b/src/pydata_sphinx_theme/assets/styles/sections/_sidebar-toggle.scss @@ -100,15 +100,13 @@ input { } .bd-sidebar-primary { - // One breakpoint less than $breakpoint-sidebar-primary. See variables/_layout.scss for more info. - @include media-breakpoint-down(md) { + @include media-breakpoint-down($breakpoint-sidebar-primary) { @include sliding-drawer("left"); } } .bd-sidebar-secondary { - // One breakpoint less than $breakpoint-sidebar-secondary. See variables/_layout.scss for more info. - @include media-breakpoint-down(lg) { + @include media-breakpoint-down($breakpoint-sidebar-secondary) { @include sliding-drawer("right"); } }