Skip to content

Commit c8073f8

Browse files
committed
fix: improve responsiveness between 992–1200px and update config year
1 parent 71d64ce commit c8073f8

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

assets/scss/_mixins.scss

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,3 +149,17 @@ body .toc a {
149149
body .toc a:hover {
150150
color: #4CAF50 !important; /* Light green text color on hover with !important */
151151
}
152+
153+
/* --- 992–1200px squeeze zone fixes --- */
154+
@media (min-width: 992px) and (max-width: 1199.98px) {
155+
.banner .illustration {
156+
max-width: 540px !important; /* ensure image size sticks */
157+
right: 15px !important; /* prevent overlap */
158+
}
159+
}
160+
/* In the squeeze band, cap the image and give the text a nudge */
161+
@media (min-width: 992px) and (max-width: 1199.98px) {
162+
.section.pt-0 .row.shadow.bg-white.p-5 > div:first-child img {
163+
width: 180px !important; /* 320–360 works well */
164+
}
165+
}

config.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title = "CircuitVerse Blog"
44
theme = "northendlab-hugo"
55
############################ Default configuration #########################
66
# post pagination
7-
paginate = "5"
7+
paperSize = "5"
88
# post excerpt
99
summaryLength = "10"
1010
# disqus short name
@@ -64,7 +64,7 @@ google_analitycs_id = "UA-112678513-4" # your id
6464
# contact form action
6565
contact_form_action = "https://formspree.io/support@circuitverse.org" # contact form works with : https://formspree.io
6666
# copyright
67-
copyright = "© 2024 [CircuitVerse](https://circuitverse.org) All Rights Reserved"
67+
copyright = "© 2025 [CircuitVerse](https://circuitverse.org) All Rights Reserved"
6868

6969
# preloader
7070
[params.preloader]

0 commit comments

Comments
 (0)