aboutsummaryrefslogblamecommitdiff
path: root/src/styles/shared-styles.ts
blob: c4fb4a019ffd41cd81c84287b0bfb8972b5f89e1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                                 
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;
  }
`;