Added some padding to local elems

This commit is contained in:
Kylart 2017-12-24 12:59:30 +08:00
parent a554072aea
commit 93a6c4206b
1 changed files with 3 additions and 5 deletions

View File

@ -21,7 +21,7 @@
transition-group(name='list') transition-group(name='list')
template(v-for='item in files') template(v-for='item in files')
v-flex.elem(:key='item.path', xs12, sm6, md4, xl3) v-flex.elem(:key='item.path', xs12, sm6, md4, xl3)
v-card.elem-content.elevation-3(ripple) v-card.pt-1.elem-content.elevation-3(ripple)
v-layout.elem-container.ma-0(row, wrap) v-layout.elem-container.ma-0(row, wrap)
v-flex(xs7) v-flex(xs7)
v-tooltip(top) v-tooltip(top)
@ -97,8 +97,6 @@
</template> </template>
<script> <script>
import axios from 'axios'
export default { export default {
mounted () { mounted () {
setTimeout(() => { this.emptyBg = true }, 300) setTimeout(() => { this.emptyBg = true }, 300)
@ -131,7 +129,7 @@
console.log(`[${(new Date()).toLocaleTimeString()}]: Requested to play ${item.name} - ${item.ep}. Sending...`) console.log(`[${(new Date()).toLocaleTimeString()}]: Requested to play ${item.name} - ${item.ep}. Sending...`)
// No need to get through store. // No need to get through store.
axios.get(`openThis`, { this.$axios.get(`openThis`, {
params: { params: {
type: 'video', type: 'video',
path: item.path, path: item.path,
@ -154,7 +152,7 @@
path: item.path path: item.path
}) })
axios.get(`openThis`, { this.$axios.get(`openThis`, {
params: { params: {
type: 'delete', type: 'delete',
path: item.path, path: item.path,