From a8f5588ae4965fb3888c8bfc1b57db9b7caee0a7 Mon Sep 17 00:00:00 2001 From: Gagan202005 Date: Tue, 27 Jan 2026 19:59:05 +0530 Subject: [PATCH] fix questions section Signed-off-by: Gagan202005 --- src/components/KeployCloud.js | 38 ++++++++++++++--------------- src/css/custom.css | 34 ++++++++++++++++++++++++++ src/theme/DocItem/index.js | 16 +++++++++--- src/theme/DocItem/styles.module.css | 3 +++ 4 files changed, 67 insertions(+), 24 deletions(-) diff --git a/src/components/KeployCloud.js b/src/components/KeployCloud.js index 1650346c8..f57762422 100644 --- a/src/components/KeployCloud.js +++ b/src/components/KeployCloud.js @@ -4,27 +4,25 @@ export const KeployCloud = () => { return (
-
-

Questions? 🤔💭

-

- For any support please{" "} - - join keploy slack community - {" "} - to get help from fellow users, or{" "} - - book a demo - {" "} - if you're exploring enterprise use cases. -

+

+ Need help or have questions? +

+ +
+ + Join Slack + + + Book a demo +
); diff --git a/src/css/custom.css b/src/css/custom.css index 785f74f0a..e11153ead 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -2602,3 +2602,37 @@ html[data-theme="dark"] div[class^="sidebar_"] > nav > ul > li > .menu__list-ite } +/* === Keploy custom paginator styling === */ +.keploy-doc-paginator { + margin-top: 1.5rem; + padding-top: 1rem; + border-top: 1px solid var(--ifm-color-emphasis-200); +} + +/* Force styles through wrapper */ +.keploy-doc-paginator a { + border: 1px solid var(--ifm-color-emphasis-200); + border-radius: 4px; + padding: 0.6rem 0.75rem; + background: transparent; + box-shadow: none; +} + +/* Hover state */ +.keploy-doc-paginator a:hover { + border-color: var(--ifm-color-emphasis-400); + background-color: var(--ifm-hover-overlay); + text-decoration: none; +} + +/* Compact text */ +.keploy-doc-paginator .pagination-nav__label { + font-size: 0.7rem; + text-transform: uppercase; + opacity: 0.6; +} + +.keploy-doc-paginator .pagination-nav__sublabel { + font-size: 0.85rem; + font-weight: 500; +} diff --git a/src/theme/DocItem/index.js b/src/theme/DocItem/index.js index e4fcc886f..6e12ea733 100644 --- a/src/theme/DocItem/index.js +++ b/src/theme/DocItem/index.js @@ -245,10 +245,18 @@ export default function DocItem(props) { -
- -
- +
+ + + +
+ +
+ +
+ +
+ diff --git a/src/theme/DocItem/styles.module.css b/src/theme/DocItem/styles.module.css index 7828ec621..f5bfb06e6 100644 --- a/src/theme/DocItem/styles.module.css +++ b/src/theme/DocItem/styles.module.css @@ -20,3 +20,6 @@ display: none; } } + + +