mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-03-29 21:11:51 +03:00
fix: margin when freespace card is disabled
This commit is contained in:
parent
a81b1ea2e8
commit
6be41e33cf
2 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div v-if="space" class="mt-3 mb-4">
|
<div v-if="space" class="mb-4">
|
||||||
<StorageCard
|
<StorageCard
|
||||||
v-if="space"
|
v-if="space"
|
||||||
class="mt-8"
|
class="mt-8"
|
||||||
|
@ -11,7 +11,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import StorageCard from '@/components/Core/StorageCard'
|
import StorageCard from '@/components/Core/StorageCard'
|
||||||
export default {
|
export default {
|
||||||
name: 'FreeSpace',
|
name: 'FreeSpace',
|
||||||
components: {
|
components: {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div v-if="status" class="mt-3">
|
<div v-if="status" class="mt-3 mb-3">
|
||||||
<label class="text-uppercase white--text caption font-weight-medium ml-4">
|
<label class="text-uppercase white--text caption font-weight-medium ml-4">
|
||||||
Session Stats
|
Session Stats
|
||||||
</label>
|
</label>
|
||||||
|
|
Loading…
Add table
Reference in a new issue