From 4cb66c7100db6ac0bfeb206978747b4de10a9ccc Mon Sep 17 00:00:00 2001 From: Andreas Nedbal Date: Sun, 29 Oct 2023 23:44:14 +0100 Subject: [PATCH] Adjust default button styling Buttons are now slightly wider, include an increased border radius, and the font weight is bold --- app/assets/stylesheets/overrides/_buttons.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/overrides/_buttons.scss b/app/assets/stylesheets/overrides/_buttons.scss index bb33b8d0..576356b7 100644 --- a/app/assets/stylesheets/overrides/_buttons.scss +++ b/app/assets/stylesheets/overrides/_buttons.scss @@ -1,5 +1,8 @@ .btn { + --btn-padding-x: 1rem; + --btn-border-radius: 2rem; color: RGB(var(--body-text)); + font-weight: bold; } .btn-link:hover { @@ -61,4 +64,4 @@ .fa { pointer-events: none; } -} \ No newline at end of file +}