Skip to content

v1.6.3 - #155

Merged
tbela99 merged 3 commits into
masterfrom
v.next
Sep 8, 2026
Merged

v1.6.3#155
tbela99 merged 3 commits into
masterfrom
v.next

Conversation

@tbela99

@tbela99 tbela99 commented Sep 8, 2026

Copy link
Copy Markdown
Owner

Fix

  • fix infinity rendering as 1/0 instead of 0/0 (NaN)
    @media (min-width: 300px) and (max-width: 768px){
    .s {
  
    margin-left: calc(infinity + 1 + calc(infinity - 1 + calc(infinity / 1 + calc(infinity * 1))));
    margin-right: calc(infinity + 1px + calc(infinity - 1 + calc(infinity / 1 + calc(infinity * 1))));

}

is parsed as

@media (300px<=width<=768px) {
 .s {
  margin-left: calc(1/0);
  margin-right: calc(1/0 + 1px)
 }
}

@tbela99 tbela99 added this to the v1.6.3 milestone Sep 8, 2026
@tbela99 tbela99 linked an issue Sep 8, 2026 that may be closed by this pull request
1 task
@tbela99
tbela99 merged commit 4083ffb into master Sep 8, 2026
7 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

fix infinity rendering

1 participant