import {css} from 'lit'; import {generateDefaultCssVars} from './lib/util/style-helper'; export const sharedStyles = css` ${generateDefaultCssVars()} :host { display: block; box-sizing: border-box; width: 100%; font-family: inherit; } .container { margin: 0; padding: 0; background-color: var(--pb-background-color); } .previewbox-title, .previewbox-link { color: var(--pb-text-color); } .previewbox-description { color: var(--pb-text-color-light); } .previewbox-link { text-decoration: none; display: flex; text-decoration: none; color: inherit; } `;