Radzen Right Sidebar Not working in Mobile [BUG]

I am trying to get my sidebar on the right side of the screen and its working perfect on a desktop screen.

Now to the problem. If you are using a screen with less then 769px the right sidebar does not work.
This is easy to test with your demo Here
image

If you set your screen width to 768 or less via Developer tools in the web browser then the right sidebar wont work.
I use Right and Left Sidebar as an refrence here

If you would press TOGGLE RIGHT SIDEBAR here nothing would happend.
However is left working fine.

At Right Sidebar and Right full height Sidebar the toggle button won't even show.

To make this test we can easily modify some of the css from this:
Style: "d-flex justify-content-end align-items-center"
To this:
class="d-flex justify-content-start align-items-center"
Then the sidebar toogle button appears so we can test the toogle and when we press it nothing happends.

Thanks.

1 Like

Try adding this CSS rule to your application. It should address the problem while we investigate it after the holidays.

@media (max-width: 768px) {
  .rz-header, .rz-footer, .rz-body {
     width: auto !important;
  }
}
2 Likes

Hi,

This css rule did fix it, however I thought i would check in to see if there was a long term fix that was introduced