mirror of
https://github.com/anyproto/anytype-ts.git
synced 2025-06-08 05:57:02 +09:00
JS-6214: fix
This commit is contained in:
parent
716f98f1b8
commit
8f93f9e942
3 changed files with 9 additions and 6 deletions
|
@ -8,10 +8,13 @@
|
|||
background: var(--color-bg-primary);
|
||||
}
|
||||
|
||||
#footer { right: $sidebarRightWidth; }
|
||||
#footer { right: $sidebarRightWidth; position: sticky; }
|
||||
|
||||
#body {
|
||||
> #historySideLeft { padding: 0px 0px 80px 0px; width: calc(100% - $sidebarRightWidth); overflow-x: hidden; overflow-y: auto; position: relative; }
|
||||
> #historySideLeft { width: calc(100% - $sidebarRightWidth); overflow-x: hidden; overflow-y: auto; position: relative; }
|
||||
> #historySideLeft {
|
||||
#editorWrapper { padding: 0px 0px 80px 0px; }
|
||||
}
|
||||
|
||||
> #historySideRight { width: $sidebarRightWidth; z-index: 20; background: var(--color-shape-tertiary); display: flex; flex-direction: column; position: relative; }
|
||||
> #historySideRight {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import * as React from 'react';
|
||||
import $ from 'jquery';
|
||||
import { observer } from 'mobx-react';
|
||||
import { Header, Footer, Loader } from 'Component';
|
||||
import { Loader } from 'Component';
|
||||
import { I, S, U, J, keyboard, Action, focus } from 'Lib';
|
||||
import HistoryLeft from './history/left';
|
||||
import HistoryRight from './history/right';
|
||||
|
@ -58,8 +58,6 @@ const PageMainHistory = observer(class PageMainHistory extends React.Component<I
|
|||
setLoading={this.setLoading}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<Footer component="mainObject" {...this.props} />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import * as React from 'react';
|
||||
import { observer } from 'mobx-react';
|
||||
import { Header, Block, HeadSimple } from 'Component';
|
||||
import { Header, Footer, Block, HeadSimple } from 'Component';
|
||||
import { I, M, S, U, translate } from 'Lib';
|
||||
|
||||
interface Props extends I.PageComponent {
|
||||
|
@ -89,6 +89,8 @@ const HistoryLeft = observer(class HistoryLeft extends React.Component<Props> {
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<Footer component="mainObject" {...this.props} />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue