mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-23 04:41:14 +00:00
fix: Add .accordion wrapper around sidebar to obtain negative bottom margin
This commit is contained in:
parent
ff4d37d03a
commit
878e0f0f85
1 changed files with 20 additions and 18 deletions
|
@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue