hr-design-system-handlebars 1.11.10 → 1.11.12

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.
Files changed (130) hide show
  1. package/.babelrc.json +14 -0
  2. package/.storybook/main.js +34 -52
  3. package/.storybook/preview-head.html +4 -1
  4. package/.storybook/preview.js +25 -35
  5. package/CHANGELOG.md +29 -0
  6. package/dist/assets/index.css +11 -3
  7. package/dist/views/components/page/page_pagination.hbs +1 -1
  8. package/dist/views/components/pagination/pagination.hbs +15 -14
  9. package/dist/views/components/pagination/pagination_current_page_invalid.hbs +1 -1
  10. package/dist/views/components/pagination/pagination_current_page_valid.hbs +2 -1
  11. package/dist/views/components/pagination/pagination_more_than_three_pages.hbs +3 -3
  12. package/dist/views/components/pagination/pagination_only_three_pages.hbs +7 -7
  13. package/dist/views/components/pagination/pagination_only_two_pages.hbs +2 -2
  14. package/package.json +20 -13
  15. package/src/assets/css/custom-utilities.css +3 -3
  16. package/src/assets/fixtures/page/page_pagination.json +15 -14
  17. package/src/stories/BrandColors.data.js +42 -0
  18. package/src/stories/BrandColors.mdx +25 -0
  19. package/src/stories/{Colors.stories.mdx → Colors.data.js} +2 -18
  20. package/src/stories/Colors.mdx +19 -0
  21. package/src/stories/Example.mdx +56 -0
  22. package/src/stories/Example.stories.js +57 -0
  23. package/src/stories/{Fixtures.stories.mdx → Fixtures.mdx} +3 -5
  24. package/src/stories/{InstallAndUpdate.stories.mdx → InstallAndUpdate.mdx} +0 -2
  25. package/src/stories/Introduction.mdx +3 -0
  26. package/src/stories/{SvgOptimization.stories.mdx → SvgOptimization.mdx} +0 -2
  27. package/src/stories/{Typography.stories.mdx → Typography.mdx} +13 -14
  28. package/src/stories/{conventions-and-datastructure.stories.mdx → conventions-and-datastructure.mdx} +7 -9
  29. package/src/stories/views/components/Button.mdx +30 -0
  30. package/src/stories/views/components/Button_.stories.js +77 -0
  31. package/src/stories/views/components/event/calendar/{event_calendar_components.stories.mdx → event_calendar_components.mdx} +31 -87
  32. package/src/stories/views/components/event/calendar/event_calendar_components.stories.js +129 -0
  33. package/src/stories/views/components/geoTag/geoTag.mdx +32 -0
  34. package/src/stories/views/components/geoTag/geoTag.stories.js +35 -0
  35. package/src/stories/views/components/grid/grid.mdx +210 -0
  36. package/src/stories/views/components/grid/grid.stories.js +148 -0
  37. package/src/stories/views/components/label/label.mdx +54 -0
  38. package/src/stories/views/components/label/label.stories.js +183 -0
  39. package/src/stories/views/components/page/fixtures/page_pagination.json +1 -1
  40. package/src/stories/views/components/page/page.data.js +17 -0
  41. package/src/stories/views/components/page/page.mdx +110 -0
  42. package/src/stories/views/components/page/page.stories.js +50 -0
  43. package/src/stories/views/components/page/page_pagination.data.js +8 -0
  44. package/src/stories/views/components/page/page_pagination.hbs +1 -1
  45. package/src/stories/views/components/page/page_pagination.mdx +8 -0
  46. package/src/stories/views/components/page/page_pagination.stories.js +34 -0
  47. package/src/stories/views/components/page/page_player.mdx +21 -0
  48. package/src/stories/views/components/page/page_player.stories.js +34 -0
  49. package/src/stories/views/components/pagination/pagination.hbs +15 -14
  50. package/src/stories/views/components/pagination/pagination_current_page_invalid.hbs +1 -1
  51. package/src/stories/views/components/pagination/pagination_current_page_valid.hbs +2 -1
  52. package/src/stories/views/components/pagination/pagination_more_than_three_pages.hbs +3 -3
  53. package/src/stories/views/components/pagination/pagination_only_three_pages.hbs +7 -7
  54. package/src/stories/views/components/pagination/pagination_only_two_pages.hbs +2 -2
  55. package/src/stories/views/components/site_header/{header.stories.mdx → header.mdx} +218 -152
  56. package/src/stories/views/components/site_header/header.stories.js +62 -0
  57. package/src/stories/views/components/teaser/cluster/teaser_cluster.mdx +32 -0
  58. package/src/stories/views/components/teaser/cluster/teaser_cluster.stories.js +146 -0
  59. package/src/stories/views/components/teaser/components/teaser_byline.mdx +97 -0
  60. package/src/stories/views/components/teaser/components/teaser_byline.stories.js +30 -0
  61. package/src/stories/views/components/teaser/components/teaser_heading.mdx +96 -0
  62. package/src/stories/views/components/teaser/components/teaser_heading.stories.js +158 -0
  63. package/src/stories/views/components/teaser/components/teaser_text.mdx +36 -0
  64. package/src/stories/views/components/teaser/components/teaser_text.stories.js +74 -0
  65. package/src/stories/views/components/teaser/components/teaser_title.mdx +42 -0
  66. package/src/stories/views/components/teaser/components/teaser_title.stories.js +85 -0
  67. package/src/stories/views/components/teaser/components/teaser_topline.mdx +29 -0
  68. package/src/stories/views/components/teaser/components/teaser_topline.stories.js +27 -0
  69. package/src/stories/views/components/teaser/content_nav/teaser_content_nav.mdx +54 -0
  70. package/src/stories/views/components/teaser/content_nav/{teaser_content_nav.stories.mdx → teaser_content_nav.stories.js} +80 -61
  71. package/src/stories/views/components/teaser/group_teaser/group.mdx +18 -0
  72. package/src/stories/views/components/teaser/group_teaser/group.stories.js +85 -0
  73. package/src/stories/views/components/teaser/podcast/podcast.mdx +11 -0
  74. package/src/stories/views/components/teaser/podcast/{podcast.stories.mdx → podcast.stories.js} +50 -39
  75. package/src/stories/views/components/teaser/podcast/podcast_subscribe_button.mdx +10 -0
  76. package/src/stories/views/components/teaser/podcast/podcast_subscribe_button.stories.js +51 -0
  77. package/src/stories/views/components/teaser/tabbox/teaser_tabbox.mdx +10 -0
  78. package/src/stories/views/components/teaser/tabbox/teaser_tabbox.stories.js +40 -0
  79. package/src/stories/views/components/teaser/teaser_alternativ.mdx +76 -0
  80. package/src/stories/views/components/teaser/teaser_alternativ.stories.js +126 -0
  81. package/src/stories/views/components/teaser/teaser_alternativ_av.mdx +75 -0
  82. package/src/stories/views/components/teaser/teaser_alternativ_av.stories.js +111 -0
  83. package/src/stories/views/components/teaser/teaser_event_calendar.mdx +57 -0
  84. package/src/stories/views/components/teaser/teaser_event_calendar.stories.js +92 -0
  85. package/src/stories/views/components/teaser/teaser_indextext.mdx +35 -0
  86. package/src/stories/views/components/teaser/teaser_indextext.stories.js +85 -0
  87. package/src/stories/views/components/teaser/teaser_logic/teaser_logic.mdx +23 -0
  88. package/src/stories/views/components/teaser/teaser_logic/teaser_logic.stories.js +36 -0
  89. package/src/stories/views/components/teaser/teaser_poster.mdx +95 -0
  90. package/src/stories/views/components/teaser/teaser_poster.stories.js +67 -0
  91. package/src/stories/views/components/teaser/teaser_stage.mdx +15 -0
  92. package/src/stories/views/components/teaser/teaser_stage.stories.js +60 -0
  93. package/src/stories/views/components/teaser/teaser_standard.mdx +129 -0
  94. package/src/stories/views/components/teaser/teaser_standard.stories.js +166 -0
  95. package/src/stories/views/components/teaser/teaser_standard_av.mdx +38 -0
  96. package/src/stories/views/components/teaser/teaser_standard_av.stories.js +117 -0
  97. package/src/stories/views/components/teaser/teaser_standard_event.mdx +103 -0
  98. package/src/stories/views/components/teaser/teaser_standard_event.stories.js +119 -0
  99. package/src/stories/views/components/teaser/ticker/teaser_ticker.mdx +10 -0
  100. package/src/stories/views/components/teaser/ticker/{teaser_ticker.stories.mdx → teaser_ticker.stories.js} +25 -24
  101. package/.storybook/withThemeDecorator.js +0 -12
  102. package/src/stories/BrandColors.stories.mdx +0 -39
  103. package/src/stories/Example.stories.mdx +0 -93
  104. package/src/stories/Introduction.stories.mdx +0 -211
  105. package/src/stories/views/components/Button.stories.mdx +0 -82
  106. package/src/stories/views/components/geoTag/geoTag.stories.mdx +0 -61
  107. package/src/stories/views/components/grid/grid.stories.mdx +0 -275
  108. package/src/stories/views/components/label/label.stories.mdx +0 -200
  109. package/src/stories/views/components/page/page.stories.mdx +0 -144
  110. package/src/stories/views/components/page/page_pagination.stories.mdx +0 -36
  111. package/src/stories/views/components/page/page_player.stories.mdx +0 -43
  112. package/src/stories/views/components/teaser/cluster/teaser_cluster.stories.mdx +0 -97
  113. package/src/stories/views/components/teaser/components/teaser_byline.stories.mdx +0 -78
  114. package/src/stories/views/components/teaser/components/teaser_heading.stories.mdx +0 -219
  115. package/src/stories/views/components/teaser/components/teaser_text.stories.mdx +0 -94
  116. package/src/stories/views/components/teaser/components/teaser_title.stories.mdx +0 -124
  117. package/src/stories/views/components/teaser/components/teaser_topline.stories.mdx +0 -63
  118. package/src/stories/views/components/teaser/group_teaser/group.stories.mdx +0 -85
  119. package/src/stories/views/components/teaser/podcast/podcast_subscribe_button.stories.mdx +0 -52
  120. package/src/stories/views/components/teaser/tabbox/teaser_tabbox.stories.mdx +0 -39
  121. package/src/stories/views/components/teaser/teaser_alternativ.stories.mdx +0 -163
  122. package/src/stories/views/components/teaser/teaser_alternativ_av.stories.mdx +0 -142
  123. package/src/stories/views/components/teaser/teaser_event_calendar.stories.mdx +0 -131
  124. package/src/stories/views/components/teaser/teaser_indextext.stories.mdx +0 -111
  125. package/src/stories/views/components/teaser/teaser_logic/teaser_logic.stories.mdx +0 -39
  126. package/src/stories/views/components/teaser/teaser_poster.stories.mdx +0 -130
  127. package/src/stories/views/components/teaser/teaser_stage.stories.mdx +0 -53
  128. package/src/stories/views/components/teaser/teaser_standard.stories.mdx +0 -170
  129. package/src/stories/views/components/teaser/teaser_standard_av.stories.mdx +0 -95
  130. package/src/stories/views/components/teaser/teaser_standard_event.stories.mdx +0 -150
@@ -0,0 +1,50 @@
1
+ import page from './page.hbs'
2
+ import {
3
+ NavigationDataWithTeaser,
4
+ NavigationDataWithTeaser2,
5
+ NavigationDataWithTeaser3,
6
+ } from './page.data.js'
7
+
8
+ const Template = (args, { globals: { customConditionalToolbar } }) => {
9
+ // You can either use a function to create DOM elements or use a plain html string!
10
+ // return `<div>${label}</div>`;
11
+ let brand =
12
+ undefined !== customConditionalToolbar ? customConditionalToolbar['brands'] : 'hessenschau'
13
+ return page({ brand, ...args })
14
+ }
15
+
16
+ export default {
17
+ title: 'Komponenten/Page/Page',
18
+ argTypes: {},
19
+
20
+ parameters: {
21
+ chromatic: {
22
+ viewports: [360, 768, 1024],
23
+ },
24
+
25
+ layout: 'fullscreen',
26
+
27
+ docs: {
28
+ inlineStories: false,
29
+ iframeHeight: 400,
30
+ },
31
+ },
32
+ }
33
+
34
+ export const Default = {
35
+ render: Template.bind({}),
36
+ name: 'Default',
37
+ args: NavigationDataWithTeaser,
38
+ }
39
+
40
+ export const MitWarnung = {
41
+ render: Template.bind({}),
42
+ name: 'Mit Warnung',
43
+ args: NavigationDataWithTeaser2,
44
+ }
45
+
46
+ export const MitSubnavigation = {
47
+ render: Template.bind({}),
48
+ name: 'Mit Subnavigation',
49
+ args: NavigationDataWithTeaser3,
50
+ }
@@ -0,0 +1,8 @@
1
+ import structuredClone from 'core-js-pure/actual/structured-clone'
2
+ import navigationData from '../site_header/fixtures/site_header_default.json'
3
+ import mixedContent from '../page/fixtures/page_pagination.json'
4
+ const NavigationDataWithMixedContent = structuredClone(
5
+ Object.assign({}, navigationData, mixedContent)
6
+ )
7
+
8
+ export { NavigationDataWithMixedContent }
@@ -54,7 +54,7 @@
54
54
  </main>
55
55
 
56
56
  <div class="flex flex-wrap justify-center w-full max-w-full">
57
- {{> components/pagination/pagination }}
57
+ {{> components/pagination/pagination this }}
58
58
  </div>
59
59
  </div>
60
60
  </body>
@@ -0,0 +1,8 @@
1
+ import { ArgsTable, Meta, Story, Canvas, Preview } from '@storybook/blocks'
2
+ import * as PagePaginationStories from './page_pagination.stories'
3
+
4
+ <Meta of={PagePaginationStories} />
5
+
6
+ <Canvas withToolbar>
7
+ <Story of={PagePaginationStories.MitPagination} />
8
+ </Canvas>
@@ -0,0 +1,34 @@
1
+ import { NavigationDataWithMixedContent } from './page_pagination.data.js'
2
+ import page from './page_pagination.hbs'
3
+
4
+ const Template = (args, { globals: { customConditionalToolbar } }) => {
5
+ // You can either use a function to create DOM elements or use a plain html string!
6
+ // return `<div>${label}</div>`;
7
+ let brand =
8
+ undefined !== customConditionalToolbar ? customConditionalToolbar['brands'] : 'hessenschau'
9
+ return page({ brand, ...args })
10
+ }
11
+
12
+ export default {
13
+ title: 'Komponenten/Page/Pagination',
14
+ argTypes: {},
15
+
16
+ parameters: {
17
+ chromatic: {
18
+ viewports: [360, 768, 1024],
19
+ },
20
+
21
+ layout: 'fullscreen',
22
+
23
+ docs: {
24
+ inlineStories: false,
25
+ iframeHeight: 400,
26
+ },
27
+ },
28
+ }
29
+
30
+ export const MitPagination = {
31
+ render: Template.bind({}),
32
+ name: 'Mit Pagination',
33
+ args: NavigationDataWithMixedContent,
34
+ }
@@ -0,0 +1,21 @@
1
+ import { ArgsTable, Meta, Story, Canvas, Preview } from '@storybook/blocks'
2
+ import * as PagePlayerStories from './page_player.stories'
3
+
4
+ <Meta of={PagePlayerStories} />
5
+
6
+ # Page (gemischte Inhalte)
7
+
8
+ Hier werden nur gemischte Inhalte betrachtet. Hierfür werden Daten-JSONS unterschiedlicher
9
+ Ausprägung (Audio, Podcast) gemischt und herangezogen. Um einer Komponente diese spezifische Inhalte zu übergeben
10
+ wird sie wie folgt aufgerufen:
11
+
12
+ ```html
13
+ {{> components/teaser/teaser_standard this.teaser_standard_50_audio.logicItem.includeModel}} {{>
14
+ components/teaser/podcast/podcast this.teaser_podcast_50.logicItem.includeModel}}
15
+ ```
16
+
17
+ <Canvas>
18
+ <Story of={PagePlayerStories.PlayerInteraktion} />
19
+ </Canvas>
20
+
21
+ <ArgsTable story="Default" />
@@ -0,0 +1,34 @@
1
+ import page from './page_players.hbs'
2
+ import AudioDataMixed from '../page/fixtures/page.json'
3
+
4
+ const Template = (args, { globals: { customConditionalToolbar } }) => {
5
+ // You can either use a function to create DOM elements or use a plain html string!
6
+ // return `<div>${label}</div>`;
7
+ let brand =
8
+ undefined !== customConditionalToolbar ? customConditionalToolbar['brands'] : 'hessenschau'
9
+ return page({ brand, ...args })
10
+ }
11
+
12
+ export default {
13
+ title: 'Komponenten/Page/Page mit Player',
14
+ argTypes: {},
15
+
16
+ parameters: {
17
+ chromatic: {
18
+ viewports: [360, 768, 1024],
19
+ },
20
+
21
+ layout: 'fullscreen',
22
+
23
+ docs: {
24
+ inlineStories: false,
25
+ iframeHeight: 400,
26
+ },
27
+ },
28
+ }
29
+
30
+ export const PlayerInteraktion = {
31
+ render: Template.bind({}),
32
+ name: 'Player-Interaktion',
33
+ args: AudioDataMixed,
34
+ }
@@ -1,18 +1,19 @@
1
- {{~#if this.isCurrentPageValid ~}}
1
+ {{~#if currentPageValid ~}}
2
2
  {{> components/pagination/pagination_current_page_valid
3
- _moreThanOnePage=this.isMoreThanOnePage
4
- _firstPage=this.isFirstPage
5
- _secondPage=this.isSecondPage
6
- _notLastPage=this.isNotLastPage
7
- _onlyTwoPages=this.isOnlyTwoPages
8
- _onlyThreePages=this.isOnlyThreePages
9
- _totalPages=this.totalPages
10
- _currentPage=this.currentPage}}
3
+ _moreThanOnePage=moreThanOnePage
4
+ _firstPage=firstPage
5
+ _secondPage=secondPage
6
+ _notLastPage=notLastPage
7
+ _notLastButOnePage=notLastButOnePage
8
+ _onlyTwoPages=onlyTwoPages
9
+ _onlyThreePages=onlyThreePages
10
+ _totalPages=totalPages
11
+ _currentPage=currentPage}}
11
12
  {{else}}
12
13
  {{> components/pagination/pagination_current_page_invalid
13
- _moreThanOnePage=this.isMoreThanOnePage
14
- _onlyTwoPages=this.isOnlyTwoPages
15
- _onlyThreePages=this.isOnlyThreePages
16
- _totalPages=this.totalPages
17
- _currentPage=this.currentPages}}
14
+ _moreThanOnePage=moreThanOnePage
15
+ _onlyTwoPages=onlyTwoPages
16
+ _onlyThreePages=onlyThreePages
17
+ _totalPages=totalPages
18
+ _currentPage=currentPages}}
18
19
  {{~/if~}}
@@ -1,4 +1,4 @@
1
- <nav class="flex content-center py-10" role="navigation" aria-label="Paginierung">
1
+ <nav class="flex content-center justify-center py-10" role="navigation" aria-label="Paginierung">
2
2
  {{> components/pagination/pagination_button_left }}
3
3
  <div class="px-20 py-10">
4
4
  <a href="{{firstPageItemUrl}}" class="font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>1</a>
@@ -1,5 +1,5 @@
1
1
  {{~#if _moreThanOnePage~}}
2
- <nav class="flex content-center py-10" role="navigation" aria-label="Paginierung">
2
+ <nav class="flex content-center justify-center py-10" role="navigation" aria-label="Paginierung">
3
3
  {{~#if _onlyTwoPages~}}
4
4
  {{> components/pagination/pagination_only_two_pages
5
5
  _firstPage=_firstPage
@@ -17,6 +17,7 @@
17
17
  _firstPage=_firstPage
18
18
  _secondPage=_secondPage
19
19
  _notLastPage=_notLastPage
20
+ _notLastButOnePage=_notLastButOnePage
20
21
  _totalPages=_totalPages
21
22
  _currentPage=_currentPage}}
22
23
  {{~/if~}}
@@ -11,7 +11,7 @@
11
11
  {{> components/pagination/pagination_button_left_linked }}
12
12
  <div class="px-20 py-10">
13
13
  <a href="{{this.firstPageItemUrl}}" class="font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>1</a>
14
- <span class="font-title">2</span>
14
+ <span class="pl-5 font-title">2</span>
15
15
  <span class="px-5 py-10 font-title">&hellip;</span>
16
16
  <a href="{{this.lastPageItemUrl}}" class="font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>{{_totalPages}}</a>
17
17
  </div>
@@ -23,8 +23,8 @@
23
23
  <span class="py-10 pl-5 font-title">&hellip;</span>
24
24
  <span class="px-5 py-10 font-bold font-title">{{_currentPage}}</span>
25
25
  {{~#if _notLastPage~}}
26
- {{~#if notLastButOnePage~}}
27
- <span class="font-title">&hellip;</span>
26
+ {{~#if _notLastButOnePage~}}
27
+ <span class="py-10 pr-5 font-title">&hellip;</span>
28
28
  {{~/if~}}
29
29
  <a href="{{this.lastPageItemUrl}}" class="font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>{{_totalPages}}</a>
30
30
  {{~/if~}}
@@ -1,26 +1,26 @@
1
1
  {{~#if _firstPage~}}
2
2
  {{> components/pagination/pagination_button_left }}
3
3
  <div class="px-20 py-10">
4
- <span class="font-title">1</span>
5
- <a href="{{nextItemUrl}}" class="font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>2</a>
6
- <a href="{{lastPageItemUrl}}" class="font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>3</a>
4
+ <span class="py-10 pr-5 font-title">1</span>
5
+ <a href="{{nextItemUrl}}" class="py-10 pr-5 font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>2</a>
6
+ <a href="{{lastPageItemUrl}}" class="py-10 font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>3</a>
7
7
  </div>
8
8
  {{> components/pagination/pagination_button_right_linked }}
9
9
  {{else}}
10
10
  {{~#if _secondPage~}}
11
11
  {{> components/pagination/pagination_button_left_linked }}
12
12
  <div class="px-20 py-10">
13
- <a href="{{firstPageItemUrl}}" class="font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>1</a>
14
- <span class="font-title">2</span>
13
+ <a href="{{firstPageItemUrl}}" class="py-10 pr-5 font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>1</a>
14
+ <span class="py-10 pr-5 font-title">2</span>
15
15
  <a href="{{lastPageItemUrl}}" class="font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>3</a>
16
16
  </div>
17
17
  {{> components/pagination/pagination_button_right_linked }}
18
18
  {{else}}
19
19
  {{> components/pagination/pagination_button_left_linked }}
20
20
  <div class="px-20 py-10">
21
- <a href="{{firstPageItemUrl}}" class="font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>1</a>
21
+ <a href="{{firstPageItemUrl}}" class="py-10 pr-5 font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>1</a>
22
22
  <a href="{{lastButOnePageItemUrl}}" class="font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>2</a>
23
- <span class="font-bold font-title">3</span>
23
+ <span class="py-10 pl-5 font-bold font-title">3</span>
24
24
  </div>
25
25
  {{> components/pagination/pagination_button_right }}
26
26
  {{~/if~}}
@@ -1,7 +1,7 @@
1
1
  {{~#if _firstPage~}}
2
2
  {{> components/pagination/pagination_button_left }}
3
3
  <div class="px-20 py-10">
4
- <span class="font-title">1</span>
4
+ <span class="py-10 pr-5 font-title">1</span>
5
5
  <a href="{{lastPageItemUrl}}" class="font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>2</a>
6
6
  </div>
7
7
  {{> components/pagination/pagination_button_right_linked }}
@@ -9,7 +9,7 @@
9
9
  {{> components/pagination/pagination_button_left_linked }}
10
10
  <div class="px-20 py-10">
11
11
  <a href="{{firstPageItemUrl}}" class="font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>1</a>
12
- <span class="font-title">2</span>
12
+ <span class="py-10 pl-5 font-title">2</span>
13
13
  </div>
14
14
  {{> components/pagination/pagination_button_right }}
15
15
  {{~/if~}}