summaryrefslogtreecommitdiffstats
path: root/src/App.vue
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2018-12-04 19:18:05 +0100
committerGitHub <noreply@github.com>2018-12-04 19:18:05 +0100
commite5698d4fbb25e2fe556496d6f74d8cf97013704f (patch)
treeffd9ecdee32bcd2d08a27cfdd687a3bfabc9c577 /src/App.vue
parentee6b6663f7427624c850feee235ce10b629c199c (diff)
parent318069caa20d5d7921eee30345be832a551b3e3c (diff)
Merge pull request #117 from nextcloud-gmbh/width
Reduce max-width from 700px to 600px
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/App.vue b/src/App.vue
index bc26bd4c..f898cd4d 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -4,7 +4,7 @@
<app-navigation :menu="menu" />
</div>
<div id="app-content">
- <div v-if="serverData.isAdmin && !serverData.checks.success" class="setup">
+ <div v-if="serverData.isAdmin && !serverData.checks.success" class="setup social__wrapper">
<h3 v-if="!serverData.checks.checks.wellknown">{{ t('social', '.well-known/webfinger isn\'t properly set up!') }}</h3>
<p v-if="!serverData.checks.checks.wellknown">{{ t('social', 'Social needs the .well-known automatic discovery to be properly set up. If Nextcloud is not installed in the root of the domain, it is often the case that Nextcloud can\'t configure this automatically. To use Social, the admin of this Nextcloud instance needs to manually configure the .well-known redirects: ') }}<a class="external_link" href="https://docs.nextcloud.com/server/15/go.php?to=admin-setup-well-known-URL" target="_blank"
rel="noreferrer noopener">{{ t('social', 'Open documentation') }} ↗</a></p>
@@ -57,7 +57,7 @@
@media (min-width: 1200px) {
#app-content .social__wrapper {
margin: 15px calc(50% - 350px - 75px);
- max-width: 700px;
+ max-width: 600px;
}
}