# problem recently when packing, prompt

.ipInfosder
    cursor pointer
    fill rgb(255, 142, 42)

    :global
      .icon
        fill rgb(255, 142, 42)
        transform rotate(180deg)
Copy the code

Exactly should be RGB caused, change to hexadecimal can be.

.ipInfosder
    cursor pointer
    fill #FF8E2A

    :global
      .icon
        fill #FF8E2A
        transform rotate(180deg)
Copy the code

There was a problem in the past, because there was a comment in the CSS file, that is, it also caused a packaging error

//  fill #FF8E2A
Copy the code