add scroll container to section sidebar

This commit is contained in:
Mads Rasmussen
2022-09-06 16:30:50 +02:00
parent 67510b163c
commit dc40a48a3e

View File

@@ -62,11 +62,13 @@ export class UmbSectionSidebar extends UmbContextConsumerMixin(LitElement) {
render() {
return html`
<umb-action-service>
<a href="${`/section/${this._sectionPathname}`}">
<h3>${this._sectionName}</h3>
</a>
<uui-scroll-container>
<a href="${`/section/${this._sectionPathname}`}">
<h3>${this._sectionName}</h3>
</a>
<slot></slot>
<slot></slot>
</uui-scroll-container>
</umb-action-service>
`;
}