master-co / css

The CSS Language and Framework

Home Page:https://css.master.co

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

🐞 calc in border size reverts to border-width

paulm17 opened this issue Β· comments

commented

Description

If I do the following:

<div class="b:calc(0.0625rem*var(--raikou-scale))|solid|var(--raikou-color-gray-3)">
    ddd
</div>

result:

css

border-width: calc(0.0625rem* var(--raikou-scale)) solid var(--raikou-color-gray-3);

should be:

css

border: calc(0.0625rem* var(--raikou-scale)) solid var(--raikou-color-gray-3);

Reproduction

https://rc.css.master.co/play/vslt6tpsu5fx

System Informations

No response