1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix: keep ItemListLayout scrollable with custom views

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2022-01-24 16:32:35 +03:00
parent 53ffc62391
commit a3a2f2592d
3 changed files with 11 additions and 1 deletions

View File

@ -12,6 +12,8 @@
:global(.TableRow):hover .pinIcon {
opacity: 1;
}
flex-grow: 1;
}
.entityName {
@ -128,3 +130,10 @@
.catalogAvatar {
font-size: 1.2ch;
}
.views {
padding: calc(var(--padding) * 2);
display: flex;
flex-direction: column;
height: 100%;
}

View File

@ -282,7 +282,7 @@ class NonInjectedCatalog extends React.Component<Props & Dependencies> {
return (
<MainLayout sidebar={this.renderNavigation()}>
<div className="p-6 h-full">
<div className={styles.views}>
{this.renderViews()}
</div>
{

View File

@ -25,6 +25,7 @@
.contents {
grid-area: contents;
overflow: auto;
height: calc(100vh - var(--bottom-bar-height) - var(--main-layout-header));
}
.footer {