From 9300a2206838684720d29e61e776c053e83c9b2e Mon Sep 17 00:00:00 2001 From: Steffen Barnau <97598458+steffenba@users.noreply.github.com> Date: Fri, 20 Sep 2024 02:50:41 +0200 Subject: [PATCH 1/2] Align card texts and tag list to left (#974) Co-authored-by: Emruz Hossain --- assets/styles/components/cards.scss | 2 +- assets/styles/components/texts.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/styles/components/cards.scss b/assets/styles/components/cards.scss index 40f51bd..c1c0490 100644 --- a/assets/styles/components/cards.scss +++ b/assets/styles/components/cards.scss @@ -18,7 +18,7 @@ } .card-body { - text-align: justify; + text-align: left; } .card-img-top { diff --git a/assets/styles/components/texts.scss b/assets/styles/components/texts.scss index 522b629..15b288f 100644 --- a/assets/styles/components/texts.scss +++ b/assets/styles/components/texts.scss @@ -12,7 +12,7 @@ strong { p { color: get-light-color('text-color'); - text-align: justify; + text-align: left; text-justify: inter-word; } From 0e8f82703fcb7bc965f0ea6cb5afb228e41676c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernat=20Borr=C3=A0s=20Civil?= <70479573+BernatBC@users.noreply.github.com> Date: Fri, 20 Sep 2024 02:52:33 +0200 Subject: [PATCH 2/2] Fix perfect matching provisionally (#976) Co-authored-by: Emruz Hossain --- assets/scripts/pages/search.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/scripts/pages/search.js b/assets/scripts/pages/search.js index 87cd0c5..64770b4 100644 --- a/assets/scripts/pages/search.js +++ b/assets/scripts/pages/search.js @@ -7,7 +7,7 @@ window.addEventListener('DOMContentLoaded', () => { const fuseOptions = { shouldSort: true, includeMatches: true, - threshold: 0.0, + threshold: 0.1, tokenize: true, location: 0, distance: 100,