@prose-reader/core 1.162.0 → 1.163.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6804,9 +6804,8 @@
6804
6804
  const margin = 0;
6805
6805
  const marginTop = 0;
6806
6806
  const marginBottom = 0;
6807
- const isReflow = true;
6808
6807
  const containerElementWidth = dimensions.width;
6809
- const containerElementEvenWidth = containerElementWidth % 2 === 0 || isReflow ? containerElementWidth : containerElementWidth - 1;
6808
+ const containerElementEvenWidth = containerElementWidth;
6810
6809
  element.style.setProperty(`overflow`, `hidden`);
6811
6810
  element.style.height = `${dimensions.height - marginTop - marginBottom}px`;
6812
6811
  element.style.width = `${containerElementEvenWidth - 2 * margin}px`;