We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a75202f commit 5481f28Copy full SHA for 5481f28
core/webdoc-default-template/src/protocol/index.js
@@ -69,7 +69,8 @@ export class webdocService {
69
});
70
}
71
72
- this.stale = true;
+ // The manifest changed from a previous non-null value
73
+ if (manifest) this.stale = true;
74
75
76
this.offline = offline;
core/webdoc-default-template/src/styles/header.scss
@@ -13,7 +13,7 @@
13
display: grid;
14
grid-template-rows: 100%;
15
grid-template-columns: fit-content(100%) minmax(0, max-content) fit-content(100%) minmax(0, 1fr);
16
- height: 100vh;
+ height: 100%;
17
overflow: hidden;/* child element must overflow/scroll on their own */
18
19
@media only screen and (max-width: 800px) {
0 commit comments