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() {
return (
<div className="accordion">
<section
id="sidebarInfo"
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>
</section>
</div>
);
}