Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix: margin when freespace card is disabled
  • Loading branch information
WDaan committed Feb 15, 2021
1 parent a81b1ea commit 6be41e3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/Navbar/FreeSpace.vue
@@ -1,5 +1,5 @@
<template>
<div v-if="space" class="mt-3 mb-4">
<div v-if="space" class="mb-4">
<StorageCard
v-if="space"
class="mt-8"
Expand All @@ -11,7 +11,7 @@
</template>

<script>
import StorageCard from '@/components/Core/StorageCard'
import StorageCard from '@/components/Core/StorageCard'
export default {
name: 'FreeSpace',
components: {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Navbar/SessionStats.vue
@@ -1,5 +1,5 @@
<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">
Session Stats
</label>
Expand Down

0 comments on commit 6be41e3

Please sign in to comment.