@apify/docs-theme 1.0.46 → 1.0.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/config.js +4 -4
- package/src/theme/custom.css +0 -4
package/package.json
CHANGED
package/src/config.js
CHANGED
|
@@ -47,13 +47,13 @@ const themeConfig = ({
|
|
|
47
47
|
},
|
|
48
48
|
{
|
|
49
49
|
label: 'Client for JavaScript',
|
|
50
|
-
href: `${absoluteUrl}/client
|
|
50
|
+
href: `${absoluteUrl}/api/client/js/`, // we need a trailing slash here, we'd get redirected there anyway
|
|
51
51
|
target: '_self',
|
|
52
52
|
rel: 'dofollow',
|
|
53
53
|
},
|
|
54
54
|
{
|
|
55
55
|
label: 'Client for Python',
|
|
56
|
-
href: `${absoluteUrl}/client
|
|
56
|
+
href: `${absoluteUrl}/api/client/python/`, // we need a trailing slash here, we'd get redirected there anyway
|
|
57
57
|
target: '_self',
|
|
58
58
|
rel: 'dofollow',
|
|
59
59
|
},
|
|
@@ -67,13 +67,13 @@ const themeConfig = ({
|
|
|
67
67
|
items: [
|
|
68
68
|
{
|
|
69
69
|
label: 'SDK for JavaScript',
|
|
70
|
-
href: `${absoluteUrl}/sdk
|
|
70
|
+
href: `${absoluteUrl}/sdk/js/`, // we need a trailing slash here, we'd get redirected there anyway
|
|
71
71
|
target: '_self',
|
|
72
72
|
rel: 'dofollow',
|
|
73
73
|
},
|
|
74
74
|
{
|
|
75
75
|
label: 'SDK for Python',
|
|
76
|
-
href: `${absoluteUrl}/sdk
|
|
76
|
+
href: `${absoluteUrl}/sdk/python/`, // we need a trailing slash here, we'd get redirected there anyway
|
|
77
77
|
target: '_self',
|
|
78
78
|
rel: 'dofollow',
|
|
79
79
|
},
|
package/src/theme/custom.css
CHANGED
|
@@ -179,10 +179,6 @@ html[data-theme="dark"] .DocSearch-Button .DocSearch-Search-Icon {
|
|
|
179
179
|
justify-content: center;
|
|
180
180
|
}
|
|
181
181
|
|
|
182
|
-
html.plugin-pages .main-wrapper {
|
|
183
|
-
overflow-x: hidden;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
182
|
.main-wrapper > div {
|
|
187
183
|
max-width: var(--max-layout-width);
|
|
188
184
|
margin: auto;
|