Fix styling

This commit is contained in:
kolaente 2020-10-10 18:49:51 +02:00
parent f7b8f48936
commit 833e732a8f
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
3 changed files with 16 additions and 9 deletions

View File

@ -21,9 +21,9 @@
</div>
</div>
</div>
<span v-else>
Using Vikunja installation at {{ apiDomain() }}. <a @click="() => configureApi = true">change</a>
</span>
<div class="api-url-info" v-else>
Sign in to your Vikunja account on <span v-tooltip="apiUrl">{{ apiDomain() }}</span> <a @click="() => configureApi = true">change</a>
</div>
<div class="notification is-success mt-2" v-if="successMsg !== '' && errorMsg === ''">
{{ successMsg }}
@ -159,9 +159,3 @@ export default {
},
}
</script>
<style scoped>
.api-config {
margin-bottom: .75rem;
}
</style>

View File

@ -21,3 +21,4 @@
@import 'namespaces';
@import 'legal';
@import 'keyboard-shortcuts';
@import 'api-config';

View File

@ -0,0 +1,12 @@
.api-config {
margin-bottom: .75rem;
}
.api-url-info {
font-size: .9rem;
text-align: right;
span {
border-bottom: 1px dashed $primary;
}
}