mesop-docs-bot / scrollable.js
github-actions[bot]
Commit
0a4e1fc
raw
history blame contribute delete
417 Bytes
import {
LitElement,
html,
css,
} from 'https://cdn.jsdelivr.net/gh/lit/dist@3/core/lit-core.min.js';
class ScrollableComponent extends LitElement {
renderRoot() {
return this;
}
firstUpdated() {
// this.focus();
}
render() {
this.tabIndex = 0;
this.style.overflowY = 'auto';
this.style.outline = 'none';
}
}
customElements.define('scrollable-component', ScrollableComponent);