Refactor CSS to remove unnecessary line breaks in max() calculation for native content radius

This commit is contained in:
mr. M
2025-01-14 23:24:27 +01:00
parent b66b46b8a0
commit c909421090

View File

@@ -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;