blob: 001bd3ffdbb114a81b203efda6bd981c08965c7e (
plain) (
tree)
|
|
import { css } from 'lit';
// these styles can be imported from any component
// for an example of how to use this, check /pages/about-about.ts
export const styles = css`
@media(min-width: 1000px) {
sl-card {
max-width: 70vw;
}
}
`;
|