blob: c4fb4a019ffd41cd81c84287b0bfb8972b5f89e1 (
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;
}
}
main {
margin-top: 80px;
}
`;
|