Skip to content

Commit 7f7f629

Browse files
committed
feat: Increase font size and social icon size with proportional adjustments
* Increase base font size from 13.5px to 15px * Increase social icons from 16px to 18px for better proportion * Update custom.css with more balanced sizing
1 parent d7095e8 commit 7f7f629

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed

config.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
base_url = "https://dhruvahuja.me"
2-
title = "dhruv_ahuja"
2+
title = "dhruv-ahuja"
33
description = "Dhruv Ahuja's Place on the Web"
44
build_search_index = true
55
generate_feeds = true
@@ -47,7 +47,7 @@ socials = [
4747
]
4848

4949
stylesheets = [
50-
# "custom.css" # at /static/custom.css
50+
"custom.css" # at /static/custom.css
5151
]
5252

5353
[extra.taxonomies]

static/custom.css

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/* Custom CSS to increase font size and social icon size */
2+
3+
:root {
4+
/* Increase base font size from 13.5px to 15px (more moderate increase) */
5+
--font-size-base: 15px;
6+
}
7+
8+
/* Increase social icon size from 16px to 18px (more proportional) */
9+
nav .left-nav .socials .social img {
10+
width: 18px;
11+
height: 18px;
12+
}
13+
14+
/* Increase dark mode toggle icon size */
15+
#dark-mode-toggle > img {
16+
width: 18px;
17+
height: 18px;
18+
}
19+
20+
/* Increase logo size */
21+
.logo > img {
22+
height: 28px;
23+
}

0 commit comments

Comments
 (0)