@apify/docs-theme 1.0.18 → 1.0.19

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apify/docs-theme",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "description": "",
5
5
  "main": "./src/index.js",
6
6
  "files": [
@@ -20,15 +20,16 @@ export default function NavbarMobilePrimaryMenu() {
20
20
  <>
21
21
  {
22
22
  subNavbar ? <>
23
- <NavbarItem
24
- key={'title'}
25
- mobile
26
- href={baseUrl}
27
- label={subNavbar.title}
28
- />
29
- <ul className="menu__list" style={{ paddingLeft: '1rem', marginBottom: '1rem', borderBottom: '1px solid #e0e0e0', paddingBottom: '1rem' }}>
23
+ <ul className="menu__list" style={{ marginBottom: '1rem', borderBottom: '1px solid #e0e0e0', paddingBottom: '1rem' }}>
24
+ <NavbarItem
25
+ key={'title'}
26
+ mobile
27
+ href={baseUrl}
28
+ label={subNavbar.title}
29
+ />
30
30
  {subNavbar.items.map((item, i) => (
31
31
  <NavbarItem
32
+ style={{ paddingLeft: '1rem' }}
32
33
  key={i}
33
34
  mobile
34
35
  {...item}
@@ -37,15 +38,16 @@ export default function NavbarMobilePrimaryMenu() {
37
38
  </ul>
38
39
  </> : null
39
40
  }
40
- <NavbarItem
41
- key={'title2'}
42
- mobile
43
- label='Apify documentation'
44
- />
45
- <ul className="menu__list" style={{ paddingLeft: '1rem' }}>
41
+ <ul className="menu__list">
42
+ <NavbarItem
43
+ key={'title2'}
44
+ mobile
45
+ label='Apify documentation'
46
+ />
46
47
  {items.map((item, i) => (
47
48
  <NavbarItem
48
49
  mobile
50
+ style={{ paddingLeft: '1rem' }}
49
51
  {...item}
50
52
  key={i}
51
53
  />