Skip to content

Commit

Permalink
Refactor CSS to remove unnecessary line breaks in max() calculation f…
Browse files Browse the repository at this point in the history
…or native content radius
  • Loading branch information
mauro-balades committed Jan 14, 2025
1 parent b66b46b commit c909421
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit c909421

Please sign in to comment.