diff --git a/CHANGELOG.md b/CHANGELOG.md index 91168ece4..a3731ec4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## [Unreleased] +### Fixed +- Fix printing in app to show all pages with NC25 + [#1327](https://github.com/nextcloud/cookbook/pull/1327) @christianlupus ### Maintenance - Cleaned up some minor code issues and updated some dependencies @@ -7,6 +10,7 @@ - Make issue-template selection description clearer [1323](https://github.com/nextcloud/cookbook/pull/1323) @seyfeb + ## 0.10.0 - 2022-11-06 ### Changed diff --git a/src/components/AppMain.vue b/src/components/AppMain.vue index 8d931caa3..bbfa2a604 100644 --- a/src/components/AppMain.vue +++ b/src/components/AppMain.vue @@ -154,5 +154,17 @@ export default { a:visited::after { content: " [" attr(href) "] "; } + + body { + position: static; + } + + #content-vue { + position: static; + width: 100%; + height: initial; + border-radius: 0; + margin: 0; + } }