Reclaim some space

This commit is contained in:
Bradlee Speice 2024-10-13 20:42:07 +00:00
parent ceca877bb5
commit efd6ea4fe8
2 changed files with 13 additions and 0 deletions

View File

@ -43,6 +43,9 @@ const config: Config = {
onInlineAuthors: 'warn',
onUntruncatedBlogPosts: 'warn',
},
theme: {
customCss: ['./src/css/custom.css']
}
} satisfies Preset.Options,
],
],

10
src/css/custom.css Normal file
View File

@ -0,0 +1,10 @@
.container {
margin: 0 1rem;
}
.footer__col {
margin-bottom: calc(var(--ifm-spacing-vertical))
}
:root {
--ifm-container-width: 1280px;
--ifm-footer-padding-vertical: 1rem;
}