Skip to content

Commit 7f7f24c

Browse files
committed
Add base font size and adjust heading sizes in Tailwind configuration; update author metadata in contextops-mcp-inro.md
1 parent 19ff1bb commit 7f7f24c

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

src/assets/styles/tailwind.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
@tailwind components;
33
@tailwind utilities;
44

5+
@layer base {
6+
body, p, span, a, li, div {
7+
@apply text-base;
8+
}
9+
}
10+
511
@layer utilities {
612
.bg-page {
713
background-color: var(--aw-color-bg-page);

src/data/post/contextops-mcp-inro.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ excerpt: While easy to get started, Astrowind is quite complex internally. This
55
image: https://images.unsplash.com/photo-1534307671554-9a6d81f4d629?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1651&q=80
66
category: Documentation
77
draft: false
8+
author: Rado Minchev
9+
avatarUrl: ""
10+
company: RND Solutions
811
tags:
912
- contextops
1013
- mcp

tailwind.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ export default {
1313
default: 'var(--aw-color-text-default)',
1414
muted: 'var(--aw-color-text-muted)',
1515
},
16+
fontSize: {
17+
base: '1.0rem', // Base font size
18+
h1: '1.45rem', // Adjust the font size for h1
19+
h2: '1.25rem', // Adjust the font size for h2
20+
h3: '1.10rem', // Adjust the font size for h3
21+
},
1622
fontFamily: {
1723
sans: ['var(--aw-font-sans, ui-sans-serif)', ...defaultTheme.fontFamily.sans],
1824
serif: ['var(--aw-font-serif, ui-serif)', ...defaultTheme.fontFamily.serif],

0 commit comments

Comments
 (0)