Fix top margin for info text when non-default updater server URL is used

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
Morris Jobke 2019-02-27 10:51:02 +01:00
parent 25bb0918fd
commit 2af1693226
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68
3 changed files with 6 additions and 3 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -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>