mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2024-11-28 21:18:54 +03:00
padding fix
This commit is contained in:
parent
94e83c52a0
commit
c17b0aa792
4 changed files with 6 additions and 9 deletions
|
@ -2,11 +2,9 @@
|
||||||
<v-app :style="{ backgroundColor: background }">
|
<v-app :style="{ backgroundColor: background }">
|
||||||
<AddModal />
|
<AddModal />
|
||||||
<Navbar v-if="isAuthenticated" />
|
<Navbar v-if="isAuthenticated" />
|
||||||
<v-container class="pa-4">
|
<v-content fill-height fill-width>
|
||||||
<v-content fill-height fill-width>
|
<router-view></router-view>
|
||||||
<router-view></router-view>
|
</v-content>
|
||||||
</v-content>
|
|
||||||
</v-container>
|
|
||||||
</v-app>
|
</v-app>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -118,7 +118,6 @@ class Qbit {
|
||||||
reverse: payload.reverse
|
reverse: payload.reverse
|
||||||
}
|
}
|
||||||
const data = new URLSearchParams(params)
|
const data = new URLSearchParams(params)
|
||||||
console.log(data.toString())
|
|
||||||
return this.axios.get(`/torrents/info?${data.toString()}`)
|
return this.axios.get(`/torrents/info?${data.toString()}`)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<template>
|
<template>
|
||||||
<div color="background" @click.self="resetSelected">
|
<div class="pl-5 pr-5" color="background" @click.self="resetSelected">
|
||||||
<h1 style="font-size: 1.1em !important;" class="subtitle-1 grey--text">
|
<h1 style="font-size: 1.1em !important;" class="subtitle-1 grey--text">
|
||||||
Dashboard
|
Dashboard
|
||||||
</h1>
|
</h1>
|
||||||
<v-container
|
<v-container
|
||||||
color="background"
|
color="background"
|
||||||
class="my-4 pa-0"
|
class="my-4 pt-5 pa-0"
|
||||||
@click.self="resetSelected"
|
@click.self="resetSelected"
|
||||||
>
|
>
|
||||||
<!-- justify-center here in layout to center!! -->
|
<!-- justify-center here in layout to center!! -->
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<v-layout row wrap align-center class="justify-center">
|
<v-layout row wrap align-center class="justify-center">
|
||||||
<div style="margin: 0 auto;">
|
<div style="margin: 100px auto;">
|
||||||
<v-container class="grey lighten-4 pa-0">
|
<v-container class="grey lighten-4 pa-0">
|
||||||
<v-card max-width="400" flat>
|
<v-card max-width="400" flat>
|
||||||
<v-container :class="`pa-3 project done`">
|
<v-container :class="`pa-3 project done`">
|
||||||
|
|
Loading…
Reference in a new issue