Merge pull request #30719 from nextcloud/fix/text-app-public-loading

Fix loading of the text app in public shared links
pull/30632/head
Julien Veyssier 2022-01-17 19:00:31 +07:00 committed by GitHub
commit 3ea21d04d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 3 deletions

@ -9,10 +9,19 @@
/** Center the shared content inside the page */
&.app-files_sharing {
justify-content: center;
align-items: center;
#app-content {
min-height: inherit;
min-height: 100%;
display: flex;
}
#files-public-content {
flex-grow: 2;
display: grid;
}
#preview {
justify-self: center;
align-self: center;
padding-left: 1rem;
padding-right: 1rem;
}