From ffe637f23d81a9e9ba769020ad0ffbb04a5e3a7d Mon Sep 17 00:00:00 2001 From: Andy Allan Date: Wed, 6 Sep 2023 18:23:22 +0100 Subject: [PATCH] Use multiplication for secondary-actions margin and padding This avoids using the sass division operator, which is deprecated. --- app/assets/stylesheets/common.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/assets/stylesheets/common.scss b/app/assets/stylesheets/common.scss index ec037aafc..181524a0e 100644 --- a/app/assets/stylesheets/common.scss +++ b/app/assets/stylesheets/common.scss @@ -1139,9 +1139,9 @@ nav.secondary-actions { flex-basis: auto; list-style: none; border-left: 1px solid $grey; - padding-left: $lineheight/2; - margin-right: $lineheight/2; - margin-bottom: $lineheight/8; + padding-left: $lineheight * 0.5; + margin-right: $lineheight * 0.5; + margin-bottom: $lineheight * 0.125; } } } -- 2.39.5