mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-06-30 23:25:58 -04:00
properly import and optimize/cache images in markdown files
This commit is contained in:
@@ -14,13 +14,3 @@
|
||||
margin: 0 auto;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.stickyHeader {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.flexedFooter {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
@@ -14,14 +14,14 @@ const Layout = ({ className, children, ...rest }: LayoutProps) => {
|
||||
<SkipToContentLink />
|
||||
|
||||
<div className={clsx(styles.flex, className)} {...rest}>
|
||||
<Header className={styles.stickyHeader} />
|
||||
<Header />
|
||||
|
||||
<main className={styles.default}>
|
||||
<SkipToContentTarget />
|
||||
<div className={styles.container}>{children}</div>
|
||||
</main>
|
||||
|
||||
<Footer className={styles.flexedFooter} />
|
||||
<Footer />
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user