ngx-slider icon indicating copy to clipboard operation
ngx-slider copied to clipboard

Slider Max Value Label Get Outside Container and Makes Overflow When using rightToLeft

Open malek-itani opened this issue 1 year ago • 0 comments

image

having the following options

  value: number = 123;
  options: Options = {
    floor: 0,
    ceil: 250,
    rightToLeft: true,
    translate: (value: number): string => {
      return `Maximun ${value} hours`;
    },
  };

the max label(ngx-slider-model-value) gets outside the window, and doesn't stop at left:0px

image

https://ngx-slider-simple-slider-example-vdofzc.stackblitz.io

malek-itani avatar Oct 30 '23 15:10 malek-itani