Skip to content

Commit

Permalink
Changed article title fontsize (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
Grabauskas authored Dec 18, 2024
1 parent 5336a83 commit 9bfa01e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docusaurus.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { themes as prismThemes } from "prism-react-renderer";
import type { Config } from "@docusaurus/types";
import type * as Preset from "@docusaurus/preset-classic";
import type * as PluginContentBlog from "@docusaurus/plugin-content-blog";

// This runs in Node.js - Don't use client-side code here (browser APIs, JSX...)

Expand Down Expand Up @@ -166,7 +167,7 @@ const config: Config = {
feedOptions: {
type: "all"
}
}
} satisfies PluginContentBlog.Options
],
[
"@docusaurus/plugin-client-redirects",
Expand Down
10 changes: 10 additions & 0 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,13 @@
--ifm-color-primary-lighter: #652d61;
--ifm-color-primary-lightest: #72336d;
}

/**
* Making smaller blog post title
*/
.title_f1Hy {
font-size: 2rem !important;
@media (max-width: 576px) {
font-size: 1.8rem !important;
}
}

0 comments on commit 9bfa01e

Please sign in to comment.