From c909421090808ea1eeba523219813908f9e2d544 Mon Sep 17 00:00:00 2001 From: "mr. M" Date: Tue, 14 Jan 2025 23:24:27 +0100 Subject: [PATCH] Refactor CSS to remove unnecessary line breaks in max() calculation for native content radius --- .../base/content/zen-styles/zen-browser-container.css | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/browser/base/content/zen-styles/zen-browser-container.css b/src/browser/base/content/zen-styles/zen-browser-container.css index 13d839bbc..024c0d312 100644 --- a/src/browser/base/content/zen-styles/zen-browser-container.css +++ b/src/browser/base/content/zen-styles/zen-browser-container.css @@ -13,10 +13,7 @@ * 1. If the native radius - the separation is less than 4px, use 4px. * 2. Otherwise, use the the calculated value (inner radius = outer radius - separation). */ - max( - 4px, - calc(var(--zen-native-content-radius) - var(--zen-element-separation)), - ) + max(4px, calc(var(--zen-native-content-radius) - var(--zen-element-separation))) ); position: relative;