diff options
Diffstat (limited to 'src/styles/shared-styles.ts')
-rw-r--r-- | src/styles/shared-styles.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/styles/shared-styles.ts b/src/styles/shared-styles.ts new file mode 100644 index 0000000..c4fb4a0 --- /dev/null +++ b/src/styles/shared-styles.ts @@ -0,0 +1,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; + } +`;
\ No newline at end of file |