misc scrollspy fixes and styling fixes

This commit is contained in:
2025-03-05 14:09:52 +00:00
parent 81623b457c
commit 8b080b2ad8
4 changed files with 51 additions and 19 deletions

View File

@@ -21,11 +21,31 @@
}
}
/* Is required to show the svg logo */
.navbar-brand {
width: 150px;
}
.offcanvas-body #bootscore-navbar {
li {
border-top: 1px dotted #fff;
padding: 0.5rem 0;
&:last-of-type {
border-bottom: 1px dotted #fff;
}
}
}
@include media-breakpoint-up(lg) {
.offcanvas-body #bootscore-navbar {
li,
li:last-of-type {
border-color: transparent;
}
}
}
/* CUSTOM BLOCK MOBILE SUPPORT */
@include media-breakpoint-up(md) {
@@ -181,6 +201,7 @@
#sidebar {
// padding-left: 8rem;
// padding-right: 2rem;
top: 30px;
font-size: 24px;
position: sticky;
a:not(.active) {
@@ -188,7 +209,6 @@
}
li {
border-top: 1px dotted #000;
// border-bottom:
padding: 0.5rem 0;
&:last-of-type {
border-bottom: 1px dotted #000;
@@ -392,3 +412,11 @@ body:not(.wp-admin) .wp-block-group.team {
}
}
.add-to-sidebar {
position: relative;
height: 100%;
}
body:not(.wp-admin) {
--wp--style--global--content-size: 100%;
}

View File

@@ -65,3 +65,9 @@ $container-max-widths: (
xl: 1140px,
xxl: 1400px
);
$offcanvas-bg-color: $primary;
$offcanvas-color: #fff;