mirror of
https://github.com/gotson/komga.git
synced 2025-12-31 21:03:38 +01:00
small cosmetic changes
This commit is contained in:
parent
0e5424de6a
commit
e5e7526365
3 changed files with 11 additions and 7 deletions
|
|
@ -4,16 +4,20 @@
|
|||
<span class="headline">Account Settings</span>
|
||||
</v-row>
|
||||
<v-row align="center">
|
||||
<v-col cols="2">Email</v-col>
|
||||
<v-col>
|
||||
<v-text-field readonly v-model="me.email"></v-text-field>
|
||||
<v-col cols="12" md="8" lg="6" xl="4">
|
||||
<span>Email</span>
|
||||
<v-text-field readonly
|
||||
v-model="me.email"
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-row align="center">
|
||||
<v-col cols="2">Roles</v-col>
|
||||
<v-col>
|
||||
<span>Roles</span>
|
||||
<v-chip-group>
|
||||
<v-chip v-for="role in me.roles" :key="role">{{ role }}</v-chip>
|
||||
<v-chip v-for="role in me.roles" :key="role"
|
||||
>{{ role }}
|
||||
</v-chip>
|
||||
</v-chip-group>
|
||||
</v-col>
|
||||
</v-row>
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@
|
|||
|
||||
<v-row>
|
||||
<v-col>
|
||||
<p>Roles</p>
|
||||
<span>Roles</span>
|
||||
<v-checkbox
|
||||
v-model="form.admin"
|
||||
label="Administrator"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
<span class="headline">Users</span>
|
||||
</v-row>
|
||||
<v-row>
|
||||
<v-col cols="12" md="4" lg="4" xl="4">
|
||||
<v-col cols="12" md="8" lg="6" xl="4">
|
||||
<div style="position: relative">
|
||||
<v-list
|
||||
elevation="3"
|
||||
|
|
|
|||
Loading…
Reference in a new issue