plangrid / react-file-viewer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Canvas not aligned in center

sauhard22 opened this issue Β· comments

Hi! πŸ‘‹

Firstly, thanks for your work on this project! πŸ™‚

Today I used patch-package to patch react-file-viewer@1.2.1 for the project I'm working on.

canvas is not aligned in the center.

Here is the diff that solved my problem:

diff --git a/node_modules/react-file-viewer/src/styles/docx.scss b/node_modules/react-file-viewer/src/styles/docx.scss
index 5a310a8..cd83a2e 100644
--- a/node_modules/react-file-viewer/src/styles/docx.scss
+++ b/node_modules/react-file-viewer/src/styles/docx.scss
@@ -42,8 +42,9 @@
   hr,
   menu,
   pre {
-    display: block;
+    display: flex;
     unicode-bidi: embed;
+    flex-direction: column;
   }
   li {
     display: list-item;

This issue body was partially generated by patch-package.