-
-
Notifications
You must be signed in to change notification settings - Fork 224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
css: Recursively minify calc() #784
Comments
Are you sure that is correct? I recall that the |
It's a bit more subtle:
|
Great find! In fact, since nested translate:-50% calc(-100% - (var(--padding-size)*2) - (var(--border-size)*2))} And assuming operator precedence as it is in math: translate:-50% calc(-100% - var(--padding-size)*2 - var(--border-size)*2)} |
Miniflux has css code like this:
it's currently minimized like this:
and could be minimized further like this:
The text was updated successfully, but these errors were encountered: