I have this sample block of code:
#button a:hover{
outline: 0.0625em solid #fff;
outline-offset: -0.0625rem;
}
But in real life it gets compiled to:
#button a:hover{
outline: 0.0625em solid #fff;
outline-offset: 0.0625rem;
}
No matter what the value is (i.e. -1rem, -2rem) the negative rem value will always come out positive in real life so it's not a rounding issue. I found someone with the same issue (see link below) on GitHub but they have not posted their resolution.
https://github.com/vaadin/sass-compiler/issues/100
I'm using maven to compile and GWT framework. I looked up the documentation for both among a crap ton of other documentations on rems and haven't found anything. There's not any coded specification in my system that instructs the behavior of rem so it's not a developer error.
This is only happening in rem's. Em's, px's, etc. all work just fine.
Any thoughts would be helpful thanks.