mirror of
https://github.com/gotson/komga.git
synced 2025-12-30 12:22:41 +01:00
small cosmetic changes
This commit is contained in:
parent
c2b6d69594
commit
f228210209
6 changed files with 14 additions and 10 deletions
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<v-container fluid>
|
||||
<v-container fluid class="ma-3">
|
||||
<v-row>
|
||||
<span class="headline">Account Settings</span>
|
||||
</v-row>
|
||||
|
|
|
|||
|
|
@ -1,8 +1,10 @@
|
|||
<template>
|
||||
<div>
|
||||
<div class="display-1">{{ libraryName }}</div>
|
||||
<v-toolbar flat color="grey lighten-4">
|
||||
<v-toolbar-title>{{ libraryName }}</v-toolbar-title>
|
||||
</v-toolbar>
|
||||
|
||||
<v-container fluid>
|
||||
<v-container fluid class="mx-3">
|
||||
<v-row justify="start">
|
||||
|
||||
<card-series v-for="s in series"
|
||||
|
|
|
|||
|
|
@ -1,8 +1,10 @@
|
|||
<template>
|
||||
<div>
|
||||
<div class="display-1">{{ $_.get(series, 'name', '') }}</div>
|
||||
<v-toolbar flat color="grey lighten-4">
|
||||
<v-toolbar-title>{{ $_.get(series, 'name', '') }}</v-toolbar-title>
|
||||
</v-toolbar>
|
||||
|
||||
<v-container fluid>
|
||||
<v-container fluid class="mx-3">
|
||||
<v-row justify="start">
|
||||
|
||||
<card-book v-for="b in books"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<v-container fluid>
|
||||
<v-container fluid class="ma-3">
|
||||
<v-row>
|
||||
<span class="headline">Users</span>
|
||||
</v-row>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div>
|
||||
<div class="ma-3">
|
||||
<v-row align="center" justify="center">
|
||||
<v-img src="../assets/logo.svg"
|
||||
max-width="400"
|
||||
|
|
|
|||
|
|
@ -5,6 +5,8 @@
|
|||
>
|
||||
<v-app-bar-nav-icon @click.stop="toggleDrawer"></v-app-bar-nav-icon>
|
||||
|
||||
<v-spacer/>
|
||||
|
||||
<v-tabs v-if="tabs.length > 0">
|
||||
<v-tab v-for="(t, index) in tabs" :key="index"
|
||||
:id="t.id"
|
||||
|
|
@ -106,9 +108,7 @@
|
|||
</v-navigation-drawer>
|
||||
|
||||
<v-content>
|
||||
<v-container fluid>
|
||||
<router-view/>
|
||||
</v-container>
|
||||
<router-view/>
|
||||
</v-content>
|
||||
|
||||
<library-delete-dialog v-model="modalDeleteLibrary"
|
||||
|
|
|
|||
Loading…
Reference in a new issue