From 01b2dce74d0bfb797b251b2adb0487e2384ef019 Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Thu, 10 Oct 2019 13:29:58 +0200 Subject: [PATCH 1/7] Fix search field Signed-off-by: Thomas Citharel --- js/src/components/SearchField.vue | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/js/src/components/SearchField.vue b/js/src/components/SearchField.vue index bc83c04ca..275e91948 100644 --- a/js/src/components/SearchField.vue +++ b/js/src/components/SearchField.vue @@ -1,5 +1,5 @@ + + \ No newline at end of file From 98dcbbe5b0d6f85a052098118f7956843ee7712d Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Thu, 10 Oct 2019 13:36:11 +0200 Subject: [PATCH 2/7] Change base colors Also fixes the navbar Create button issue Signed-off-by: Thomas Citharel --- js/src/variables.scss | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/js/src/variables.scss b/js/src/variables.scss index 3fb70b1d2..5921c99cc 100644 --- a/js/src/variables.scss +++ b/js/src/variables.scss @@ -5,11 +5,21 @@ $primary-invert: findColorInvert($primary); $secondary: #FAB12D; $secondary-invert: findColorInvert($secondary); +$success: #78cc8a; +$success-invert: findColorInvert($success); +$info: #36bcd4; +$info-invert: findColorInvert($info); +$danger: #ff7061; +$danger-invert: findColorInvert($danger); + $colors: map-merge( $colors, ( "primary": ($primary, $primary-invert), - "secondary": ($secondary, $secondary-invert) + "secondary": ($secondary, $secondary-invert), + "success": ($success, $success-invert), + "info": ($info, $info-invert), + "danger": ($danger, $danger-invert), ) ); From dff27cad9d520bc281501cbfda313ce67c1be5cc Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Thu, 10 Oct 2019 13:39:24 +0200 Subject: [PATCH 3/7] Add margin below description instance on homepage Signed-off-by: Thomas Citharel --- js/src/views/Home.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/js/src/views/Home.vue b/js/src/views/Home.vue index a5c98a1f9..c20c5d4b1 100644 --- a/js/src/views/Home.vue +++ b/js/src/views/Home.vue @@ -5,7 +5,7 @@

{{ $t('Gather ⋅ Organize ⋅ Mobilize') }}

{{ $t('Join {instance}, a Mobilizon instance', { instance: config.name }) }} -

{{ config.description }}

+

{{ config.description }}