Skip to content

Commit c909421

Browse files
committed
Refactor CSS to remove unnecessary line breaks in max() calculation for native content radius
1 parent b66b46b commit c909421

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/browser/base/content/zen-styles/zen-browser-container.css

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,7 @@
1313
* 1. If the native radius - the separation is less than 4px, use 4px.
1414
* 2. Otherwise, use the the calculated value (inner radius = outer radius - separation).
1515
*/
16-
max(
17-
4px,
18-
calc(var(--zen-native-content-radius) - var(--zen-element-separation)),
19-
)
16+
max(4px, calc(var(--zen-native-content-radius) - var(--zen-element-separation)))
2017
);
2118
position: relative;
2219

0 commit comments

Comments
 (0)