From 5901d139a04069deb7418c32922a0d6118e147b5 Mon Sep 17 00:00:00 2001
From: paidge <paidge_cs@hotmail.com>
Date: Thu, 27 Jan 2022 01:46:11 +0100
Subject: [PATCH] reduce margin for titles

---
 pages/favoris.vue                    | 2 +-
 pages/index.vue                      | 2 +-
 pages/lexique.vue                    | 2 +-
 pages/membres/index.vue              | 2 +-
 pages/parametres.vue                 | 2 +-
 pages/previsions/futures_sorties.vue | 2 +-
 pages/previsions/index.vue           | 2 +-
 pages/template.vue                   | 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/pages/favoris.vue b/pages/favoris.vue
index 65c4353..aa87ca9 100644
--- a/pages/favoris.vue
+++ b/pages/favoris.vue
@@ -1,6 +1,6 @@
 <template>
 	<main class="container">
-		<h2 class="text-center my-5 font-weight-light">
+		<h2 class="text-center my-4 font-weight-light">
 			{{ $t("favoris.title") }}
 		</h2>
 		<NavigationLoader :isLoading="$apollo.queries.favoris.loading" />
diff --git a/pages/index.vue b/pages/index.vue
index 69a87c4..666ea81 100644
--- a/pages/index.vue
+++ b/pages/index.vue
@@ -1,6 +1,6 @@
 <template>
 	<main class="container">
-		<h2 class="text-center my-5 font-weight-light">{{ $t("inout") }}</h2>
+		<h2 class="text-center my-4 font-weight-light">{{ $t("inout") }}</h2>
 		<NavigationLoader :isLoading="$apollo.queries.newMembers.loading" />
 		<transition name="fade">
 			<div class="alert alert-danger" v-if="error">{{ error }}</div>
diff --git a/pages/lexique.vue b/pages/lexique.vue
index c4e1629..1156b06 100644
--- a/pages/lexique.vue
+++ b/pages/lexique.vue
@@ -2,7 +2,7 @@
 	<main class="container">
 		<div class="rech-lexique row mb-4">
 			<div class="col-md-6 mx-auto">
-				<h2 class="text-center my-5 font-weight-light">{{ $t("lexique") }}</h2>
+				<h2 class="text-center my-4 font-weight-light">{{ $t("lexique") }}</h2>
 				<div class="form-group">
 					<input
 						v-model="search"
diff --git a/pages/membres/index.vue b/pages/membres/index.vue
index 28c4d5c..36ce28f 100644
--- a/pages/membres/index.vue
+++ b/pages/membres/index.vue
@@ -1,6 +1,6 @@
 <template>
 	<main class="container">
-		<h2 class="text-center my-5 font-weight-light">{{ $t("membres") }}</h2>
+		<h2 class="text-center my-4 font-weight-light">{{ $t("membres") }}</h2>
 		<div class="row mb-4">
 			<div class="col-sm-8 col-md-6 col-lg-5 m-auto text-center">
 				<label for="rech" class="form-label">{{ $t("recherche.title") }}</label>
diff --git a/pages/parametres.vue b/pages/parametres.vue
index 1f19198..c581da2 100644
--- a/pages/parametres.vue
+++ b/pages/parametres.vue
@@ -1,6 +1,6 @@
 <template>
 	<main class="container">
-		<h2 class="text-center my-5 font-weight-light">{{ $t("params.title") }}</h2>
+		<h2 class="text-center my-4 font-weight-light">{{ $t("params.title") }}</h2>
 		<NavigationLoader :isLoading="$apollo.queries.allParameters.loading" />
 		<transition name="fade">
 			<div class="alert alert-danger" v-if="error">{{ error }}</div>
diff --git a/pages/previsions/futures_sorties.vue b/pages/previsions/futures_sorties.vue
index dc6fb5f..b2b0c02 100644
--- a/pages/previsions/futures_sorties.vue
+++ b/pages/previsions/futures_sorties.vue
@@ -1,6 +1,6 @@
 <template>
 	<main class="container">
-		<h2 class="text-center my-5 font-weight-light">{{ $t("futureexits") }}</h2>
+		<h2 class="text-center my-4 font-weight-light">{{ $t("futureexits") }}</h2>
 		<div class="row mb-4">
 			<div class="col-6 m-auto text-center">
 				<label for="period" class="form-label">{{
diff --git a/pages/previsions/index.vue b/pages/previsions/index.vue
index 3461e67..54b7a9d 100644
--- a/pages/previsions/index.vue
+++ b/pages/previsions/index.vue
@@ -6,7 +6,7 @@
 		</transition>
 		<transition name="fade">
 			<div v-if="wwResult">
-				<h2 class="text-center my-5 font-weight-light">
+				<h2 class="text-center my-4 font-weight-light">
 					{{ $t("previsions.title") }}
 					<small
 						><span class="badge badge-secondary">{{
diff --git a/pages/template.vue b/pages/template.vue
index 5b4306a..17f5010 100644
--- a/pages/template.vue
+++ b/pages/template.vue
@@ -1,6 +1,6 @@
 <template>
 	<main class="container">
-		<h2 class="text-center my-5 font-weight-light">{{ myvar }}</h2>
+		<h2 class="text-center my-4 font-weight-light">{{ myvar }}</h2>
 		<code
 			>For internal links, use
 			<NuxtLink :to="localePath('path/page')">My link</NuxtLink></code
-- 
GitLab