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 (#4737)

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2022-01-25 08:04:42 +03:00 committed by GitHub
parent 10e4416b07
commit b037c3bf02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 {