The syntax highlighting breaks when there's a nested bracket inside min or max.
Reproduced with: var, calc, attr.
VS Code version: 1.114.0
.a {
width: min(20px, var(--font-large));
color: inherit;
height: 100px;
}
.b {
width: max(20px, calc(1em + 2px));
color: inherit;
height: 100px;
}
.c {
width: max(20px, attr(size));
color: inherit;
height: 100px;
}

The syntax highlighting breaks when there's a nested bracket inside
minormax.Reproduced with:
var,calc,attr.VS Code version:
1.114.0