zamis 5 years ago
parent
commit
3b96cc9e1f
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/client/js/components/Page/DisplaySwitcher.jsx

+ 3 - 3
src/client/js/components/Page/DisplaySwitcher.jsx

@@ -31,6 +31,7 @@ const DisplaySwitcher = (props) => {
     <>
       <TabContent activeTab={editorMode}>
         <TabPane tabId="view">
+
           <div className="d-flex d-md-none justify-content-end border-bottom">
             <PageAccessoriesModalControl
               isGuestUser={isGuestUser}
@@ -38,8 +39,8 @@ const DisplaySwitcher = (props) => {
             />
           </div>
 
-          <div className="d-flex flex-row">
-            <div className="d-flex flex-column">
+          <div className="d-flex flex-row justify-content-around">
+            <div className="w-100">
               {pageUser && <UserInfo pageUser={pageUser} />}
               <Page />
             </div>
@@ -58,7 +59,6 @@ const DisplaySwitcher = (props) => {
             </div>
           </div>
 
-
           <PageAccessoriesModal
             isGuestUser={isGuestUser}
             isSharedUser={isSharedUser}