mirror of
https://github.com/zen-browser/desktop.git
synced 2026-04-05 07:09:30 +00:00
Refactor CSS to remove unnecessary line breaks in max() calculation for native content radius
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user