fix: Add .accordion wrapper around sidebar to obtain negative bottom margin

This commit is contained in:
Jay Sitter 2023-06-17 14:24:13 -04:00
parent ff4d37d03a
commit 878e0f0f85

View file

@ -29,6 +29,7 @@ export class SiteSidebar extends Component<SiteSidebarProps, SiteSidebarState> {
render() { render() {
return ( return (
<div className="accordion">
<section <section
id="sidebarInfo" id="sidebarInfo"
className="card border-secondary mb-3 overflow-hidden" className="card border-secondary mb-3 overflow-hidden"
@ -48,6 +49,7 @@ export class SiteSidebar extends Component<SiteSidebarProps, SiteSidebarState> {
<div className="card-body">{this.siteInfo()}</div> <div className="card-body">{this.siteInfo()}</div>
</div> </div>
</section> </section>
</div>
); );
} }