1
0
Fork 0
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:
Andrew Simachev 2025-02-26 13:19:39 +01:00
parent 716f98f1b8
commit 8f93f9e942
No known key found for this signature in database
GPG key ID: 1DFE44B21443F0EF
3 changed files with 9 additions and 6 deletions

View file

@ -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 {

View file

@ -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>
);
};

View file

@ -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>
);
};