Skip to content

Commit 11da2bc

Browse files
authored
Merge branch 'main' into fix/footer-bug-for-mobile-view
2 parents 61d05a3 + bc5e60b commit 11da2bc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+2837
-281
lines changed

docs/gsoc/contribution-guide.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ keywords:
66
- GSoC
77
- Open Source
88
- Hacktoberfest
9+
toc_min_heading_level: 2
10+
toc_max_heading_level: 2
911
---
1012

1113
# Getting Started with Google Summer of Code (GSoC)

docusaurus.config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ module.exports = {
3131
"docusaurus-tailwindcss-loader",
3232
],
3333
themeConfig: {
34+
tableOfContents: {
35+
minHeadingLevel: 2,
36+
maxHeadingLevel: 2,
37+
},
3438
canonicalBase: "https://www.keploy.io/",
3539
metadata: [
3640
{

src/components/ProductTier.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const ProductTier = ({ tiers, offerings }) => {
7575
letter-spacing: 0.01em;
7676
}
7777
html[data-theme="dark"] .product-tier-chip {
78-
opacity: 0.9;
78+
background: rgba(255, 255, 255, 0.15) !important;
7979
}
8080
`}</style>
8181
</div>

src/components/TierCallout.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export default function TierCallout({ chips = [], type, children }) {
8686
line-height: 1.5;
8787
}
8888
html[data-theme="dark"] .tier-note__content {
89-
color: #9ca3af;
89+
color: #e5e7eb;
9090
}
9191
.tier-note__content p:last-child {
9292
margin-bottom: 0;
@@ -129,7 +129,7 @@ export default function TierCallout({ chips = [], type, children }) {
129129
130130
/* Dark mode adjustments */
131131
html[data-theme="dark"] .tier-chip {
132-
opacity: 0.9;
132+
background: rgba(255, 255, 255, 0.15) !important;
133133
}
134134
`}</style>
135135
</div>

0 commit comments

Comments
 (0)