diff options
author | Morris Jobke <hey@morrisjobke.de> | 2019-02-27 10:51:02 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2019-02-27 10:51:02 +0100 |
commit | 2af169322645bd84399e283c80a9fa0bc1b036a7 (patch) | |
tree | dcbbf2436ddd21a8f2015cb0e1fe2a8f9a816c81 /apps/updatenotification/src | |
parent | 25bb0918fd8ac3f5c69c8d53494d6167d9531866 (diff) | |
download | nextcloud-server-2af169322645bd84399e283c80a9fa0bc1b036a7.tar.gz nextcloud-server-2af169322645bd84399e283c80a9fa0bc1b036a7.zip |
Fix top margin for info text when non-default updater server URL is used
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/updatenotification/src')
-rw-r--r-- | apps/updatenotification/src/components/root.vue | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/updatenotification/src/components/root.vue b/apps/updatenotification/src/components/root.vue index e9771e3af09..83753369390 100644 --- a/apps/updatenotification/src/components/root.vue +++ b/apps/updatenotification/src/components/root.vue @@ -57,7 +57,7 @@ </template> <template v-if="!isDefaultUpdateServerURL"> - <p> + <p class="topMargin"> <em>{{ t('updatenotification', 'A non-default update server is in use to be checked for updates:') }} <code>{{updateServerURL}}</code></em> </p> </template> @@ -497,4 +497,7 @@ #updatenotification .update-menu .icon-star:focus { background-image: var(--icon-star-000); } + #updatenotification .topMargin { + margin-top: 15px; + } </style> |