RadzenColumn OffsetXs not working

Am i the only one facing this particular problem?

<RadzenStack Orientation="Orientation.Horizontal">
  <RadzenColumn>
    <RadzenButton Icon="arrow_left" Style="float: left;" />

  </RadzenColumn>
  <RadzenColumn OffsetXS="8" OffsetMD="10">
    <RadzenButton Icon="arrow_right" Style="float: right;" />
  </RadzenColumn>
</RadzenStack>

If i use Offset="10", then it works, but if i change to the specific breakpoints (because on mobile i need 8 instead of 10) then its just like i wouldn't use offset at all the arrows are then next to each other and not on everyones edge... hope it's understandable.

OK, sry. jut fixed it by myself:

<RadzenStack Orientation="Orientation.Horizontal">
  <RadzenColumn>
    <RadzenButton Icon="arrow_left" Style="float: left;" />
    
  </RadzenColumn>
  <RadzenColumn Offset="8" OffsetXS="8" OffsetMD="10">
    <RadzenButton Icon="arrow_right" Style="float: right;" />
  </RadzenColumn>
</RadzenStack>

I need to use a starting point.

1 Like