scrollerpackage.theme.material.vaadin-scroller-styles.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-webcomponents Show documentation
Show all versions of vaadin-webcomponents Show documentation
Mvnpm composite: Vaadin webcomponents
The newest version!
import '@vaadin/vaadin-material-styles/color.js';
import { css, registerStyles } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
const scroller = css`
:host {
outline: none;
}
:host([focus-ring]) {
box-shadow: 0 0 0 2px var(--material-primary-color);
}
`;
registerStyles('vaadin-scroller', scroller, { moduleId: 'material-scroller' });
export { scroller };