aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-11-14 20:58:24 +0100
committerGitHub <noreply@github.com>2018-11-14 20:58:24 +0100
commitcbf90bf201ba5e61aee39dc6f0726153b833478a (patch)
tree3e51c5d20fffb688ecb4b461b3814dd9a7df6bba /apps
parent1783fa71765132ac11a4dc21b299ebfa52756bca (diff)
parentf8bed7d58577685234a100cdb5f55d4cca94096f (diff)
downloadnextcloud-server-cbf90bf201ba5e61aee39dc6f0726153b833478a.tar.gz
nextcloud-server-cbf90bf201ba5e61aee39dc6f0726153b833478a.zip
Merge pull request #12454 from nextcloud/list-shrink-fix
Fix breakpoint and shrinking of the content + list
Diffstat (limited to 'apps')
-rw-r--r--apps/files_sharing/css/mobile.scss2
-rw-r--r--apps/files_sharing/css/public.scss2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_sharing/css/mobile.scss b/apps/files_sharing/css/mobile.scss
index 3aaa5718cab..0202fdd08d1 100644
--- a/apps/files_sharing/css/mobile.scss
+++ b/apps/files_sharing/css/mobile.scss
@@ -1,4 +1,4 @@
-@media only screen and (max-width: 768px) {
+@media only screen and (max-width: $breakpoint-mobile) {
/* make header scroll up for single shares, more view of content on small screens */
#header.share-file {
diff --git a/apps/files_sharing/css/public.scss b/apps/files_sharing/css/public.scss
index c31b4f82bed..9d752115c59 100644
--- a/apps/files_sharing/css/public.scss
+++ b/apps/files_sharing/css/public.scss
@@ -207,7 +207,7 @@ thead {
}
// hide the primary on public share on mobile
-@media only screen and (max-width: 768px) {
+@media only screen and (max-width: $breakpoint-mobile) {
#body-public {
.header-right {
#header-primary-action {