Skip to content

Commit 90ac982

Browse files
Merge pull request #30722 from nextcloud/backport/30719/stable23
[stable23] Fix loading of the text app in public shared links
2 parents 93fda51 + f989dcb commit 90ac982

1 file changed

Lines changed: 12 additions & 3 deletions

File tree

core/css/public.scss

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,19 @@
99

1010
/** Center the shared content inside the page */
1111
&.app-files_sharing {
12-
justify-content: center;
13-
align-items: center;
1412
#app-content {
15-
min-height: inherit;
13+
min-height: 100%;
14+
display: flex;
15+
}
16+
17+
#files-public-content {
18+
flex-grow: 2;
19+
display: grid;
20+
}
21+
22+
#preview {
23+
justify-self: center;
24+
align-self: center;
1625
padding-left: 1rem;
1726
padding-right: 1rem;
1827
}

0 commit comments

Comments
 (0)