Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
"dialog-polyfill": "^0.5.6",
"dotenv": "^16.4.7",
"find-versions-cli": "^5.0.0",
"html-validate": "^9.2.2",
"html-validate": "^9.4.1",
"html5-boilerplate": "^9.0.1",
"husky": "^9.1.7",
"iframe-resizer": "^5.3.3",
Expand Down
2 changes: 1 addition & 1 deletion source/_patterns/01-elements/video/_video.hbs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<video class="elm-video"{{#unless preventControls }} controls{{/unless }}{{#if autoplay}} autoplay{{/if }}{{#if preload}} preload{{/if }}{{#if poster}} poster="{{poster}}"{{/if }} width="{{ width }}" height="{{ height }}">
<video class="elm-video"{{#unless preventControls }} controls{{/unless }}{{#if autoplay}} autoplay{{/if }}{{#if preload}} preload{{/if }}{{#if poster}} poster="{{poster}}"{{/if }}{{#if width}} width="{{ width }}"{{/if }}{{#if height}} height="{{ height }}"{{/if }}>
{{#each sources }}
<source src="{{ src }}" type="{{ type }}">
{{/each }}
Expand Down
2 changes: 1 addition & 1 deletion source/_patterns/02-components/brand/_brand.hbs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="cmp-brand">
<a href="#" title="Home" rel="home">
{{> elements-image src='../../images/db_logo.svg' alt='Deutsche Bahn Logo' styleModifier='is-logo' elementtiming='logo' }}
{{> elements-image src='../../images/db_logo.svg' alt='Deutsche Bahn Logo' styleModifier='is-logo' elementtiming='logo' width='33' height='23' }}
</a>
{{#if sitename }}<span class="is-site-name">{{ sitename }}</span>{{/if }}
</div>
2 changes: 1 addition & 1 deletion source/_patterns/02-components/cards/_card.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<use href="../../icons/illustrative/{{ icon }}.svg#icon"></use>
</svg>
{{else}}
{{> elements-image src="../../icons/functional/images/navigation/db_ic_list_20.svg" alt="" }}
{{> elements-image src="../../icons/functional/images/navigation/db_ic_list_20.svg" alt="" width="20" height="20" }}
{{/if_eq }}
<figcaption>
<!-- [html-validate-disable-next heading-level, no-unused-disable] -->
Expand Down
Loading