From ad4ed680378a298fab7d6db0f52ebcbea4c7827e Mon Sep 17 00:00:00 2001 From: Andy Allan Date: Thu, 28 Sep 2023 21:01:41 +0100 Subject: [PATCH] Fix border settings used in workaround Fixes #4263 --- app/assets/stylesheets/parameters.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/parameters.scss b/app/assets/stylesheets/parameters.scss index 4f93273a89..3fd0ecace6 100644 --- a/app/assets/stylesheets/parameters.scss +++ b/app/assets/stylesheets/parameters.scss @@ -29,8 +29,8 @@ $enable-negative-margins: true; // This can be removed after upgrading to bootstrap 5.2 // This copies definitions straight from bootstrap, but uses the sass-native // version of the subtract function. -$border-width: 2px; -$border-radius: .35rem; +$border-width: 1px; +$border-radius: .25rem; $card-border-radius: $border-radius; $card-border-width: $border-width; $card-inner-border-radius: subtract($card-border-radius, $card-border-width);