diff --git a/pvc-vue/src/components/pages/vms/VMOverview.vue b/pvc-vue/src/components/pages/vms/VMOverview.vue index 0e025f5..f8ecdf2 100644 --- a/pvc-vue/src/components/pages/vms/VMOverview.vue +++ b/pvc-vue/src/components/pages/vms/VMOverview.vue @@ -641,7 +641,7 @@ const clearSearch = () => { .overview-container { display: flex; flex-direction: column; - gap: 1rem; + gap: 0.5rem; width: 100%; } diff --git a/pvc-vue/src/views/Nodes.vue b/pvc-vue/src/views/Nodes.vue index f2966e8..6ae4d51 100644 --- a/pvc-vue/src/views/Nodes.vue +++ b/pvc-vue/src/views/Nodes.vue @@ -39,4 +39,9 @@ defineProps({ gap: 0.5rem; width: 100%; } + +/* Remove top margin from first child (usually PageTitle) */ +.content-grid > :first-child { + margin-top: 0 !important; +} \ No newline at end of file diff --git a/pvc-vue/src/views/VMs.vue b/pvc-vue/src/views/VMs.vue index 4103fc6..4d0da68 100644 --- a/pvc-vue/src/views/VMs.vue +++ b/pvc-vue/src/views/VMs.vue @@ -40,4 +40,9 @@ const props = defineProps({ gap: 0.5rem; width: 100%; } + +/* Remove top margin from first child (usually PageTitle) */ +.content-grid > :first-child { + margin-top: 0 !important; +} \ No newline at end of file