Skip to content

Commit

Permalink
fix(side-drawer): uncomment blocking elements import (#1241)
Browse files Browse the repository at this point in the history
  • Loading branch information
yinonov committed Feb 16, 2022
1 parent 755c072 commit 6510ef0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions components/side-drawer/src/vwc-side-drawer-base.ts
@@ -1,4 +1,4 @@
// import 'blocking-elements';
import 'blocking-elements';
import 'wicg-inert';
import {
html, LitElement, TemplateResult, property, query
Expand Down Expand Up @@ -112,18 +112,18 @@ export class VWCSideDrawerBase extends LitElement {
return html`
<aside part="${ifDefined(alternate)}" class="side-drawer ${classMap(classes)}"
@transitionend=${this.#handleTransitionEnd} @keydown=${this.#handleKeydown}>
${topBar}
<div class="side-drawer-content">
<slot></slot>
</div>
</aside>
<div class="side-drawer-app-content">
<slot name="app-content"></slot>
</div>
${scrim}
`;
}
Expand Down

0 comments on commit 6510ef0

Please sign in to comment.