From aef76db68c0e8736eb47b464b6524d7e0267f268 Mon Sep 17 00:00:00 2001
From: lewa <lene.wasskog@nibio.no>
Date: Thu, 2 May 2024 09:38:21 +0200
Subject: [PATCH] chore: Minor styling changes

---
 src/components/ObservationList.vue | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/components/ObservationList.vue b/src/components/ObservationList.vue
index e5fb491..1b96f8d 100644
--- a/src/components/ObservationList.vue
+++ b/src/components/ObservationList.vue
@@ -28,7 +28,7 @@
 				<button type="button" class="btn btn-primary">+</button>
 			</router-link>
 		</div>
-		<div v-if="observationsExist()" class="bg-light">
+		<div v-if="observationsExist()" class="bg-light mt-2">
 			<ul class="list-group bg-light" v-if="isInitialized">
 				<!-- TODO: Remove the sync status classes (v-bind:class). Do it after sync has been automatized -->
 				<router-link :to="{name: 'Observation', params: {observationId:obs.observationId}}"
@@ -62,7 +62,7 @@
 
 			</ul>
 		</div>
-		<div v-else class="alert alert-info" role="alert">{{ $t("observationlist.alert.emptylist")}}</div>
+		<div v-else class="alert alert-info mt-2" role="alert">{{ $t("observationlist.alert.emptylist")}}</div>
 		<common-util ref="CommonUtil" />
 		<sync ref="Sync" />
 	</div>
-- 
GitLab