diff --git a/docusaurus.config.ts b/docusaurus.config.ts index 9e431d9..1e56599 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -43,6 +43,9 @@ const config: Config = { onInlineAuthors: 'warn', onUntruncatedBlogPosts: 'warn', }, + theme: { + customCss: ['./src/css/custom.css'] + } } satisfies Preset.Options, ], ], diff --git a/src/css/custom.css b/src/css/custom.css new file mode 100644 index 0000000..5f6981f --- /dev/null +++ b/src/css/custom.css @@ -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; +} \ No newline at end of file