pennions / JESS

Stylesheet influenced by Pico CSS and Fluent UI from microsoft
https://pennions.github.io/JESS
MIT License
2 stars 0 forks source link

border-light is no different from border-black #32

Closed antonieIPR closed 1 year ago

antonieIPR commented 1 year ago

When using .border-light I expect to have a border with the light colour applied, like in the other classes. Instead, the class renders a black border.

antonieIPR commented 1 year ago

Current workaround for this issue:

.border-custom{
    border-color: var(--light);
}
jelmerveen commented 1 year ago

After looking into the code, you are absolutely correct.

This is a bug introduced by the refactoring, it still points to the hr colour which does not exist,

border-color: var(--hr-color) !important;
}