@progressive-development/pd-spa-helper 0.8.1-h → 0.8.1-i
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"default-not-found.d.ts","sourceRoot":"","sources":["../../src/defaultpage/default-not-found.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAEzD,qBACa,eAAgB,SAAQ,eAAe;IAClD,MAAM,CAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"default-not-found.d.ts","sourceRoot":"","sources":["../../src/defaultpage/default-not-found.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAEzD,qBACa,eAAgB,SAAQ,eAAe;IAClD,MAAM,CAAC,MAAM,4BAQX;IAEF,MAAM;CAKP"}
|
|
@@ -11,7 +11,7 @@ var __decorateClass = (decorators, target, key, kind) => {
|
|
|
11
11
|
};
|
|
12
12
|
let DefaultNotFound = class extends DefaultViewPage {
|
|
13
13
|
render() {
|
|
14
|
-
return html
|
|
14
|
+
return html`<h3>Keine passende Seite gefunden</h3>
|
|
15
15
|
<p>Zu der URL konnte keine passende Seite gefunden werden</p>
|
|
16
16
|
<a href="/">Zurück zur Startseite</a>`;
|
|
17
17
|
}
|
|
@@ -20,9 +20,8 @@ DefaultNotFound.styles = [
|
|
|
20
20
|
css`
|
|
21
21
|
:host {
|
|
22
22
|
padding-top: 3em;
|
|
23
|
-
display:
|
|
24
|
-
align
|
|
25
|
-
justify-content: center;
|
|
23
|
+
display: block;
|
|
24
|
+
text-align: center;
|
|
26
25
|
}
|
|
27
26
|
`
|
|
28
27
|
];
|
package/package.json
CHANGED