Problem/bug exporting code

I have a div that has children elements on it. I style the div with a bottom right border radius, everything looks right. I export the code and try it elsewhere and everything still works. Here’s the code:

.userbar {
position: absolute;
width: 161px;
height: 210px;
border-bottom-right-radius: 10px;
background-color: #45515f;
}

Now, I add 1px bottom and right borders to it, everything still looks fine in the editor. But when I export the code, the radius is gone. I tried this with multiple different divs and it’s always the same. Code after adding borders:

.userbar {
position: absolute;
width: 161px;
height: 210px;
border-right: 1px solid black;
border-bottom: 1px solid black;
background-color: #45515f;
}

Any help appreciated, hope it’s not just me overlooking something.

Hi @nakanaa, that does indeed look like a bug. Looking into it now, thanks for your patience!