From 1527b02c6d7b542dfdfab41e55b8b8b437c8c46f Mon Sep 17 00:00:00 2001 From: Claire Date: Tue, 25 Apr 2023 22:15:00 +0200 Subject: [PATCH] Fix sass warning about deprecated slash as division (#24653) Co-authored-by: Nick Schonning --- app/javascript/styles/mastodon/components.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index e985afea0b..c2cd71756a 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -1170,7 +1170,7 @@ body > [data-popper-placement] { width: 0; position: absolute; top: 0; - inset-inline-start: 16px + ((46px - 2px) / 2); + inset-inline-start: 16px + ((46px - 2px) * 0.5); &--full { top: 0;