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

Fix .TableHead.sticky in for details panels

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2021-07-09 13:47:52 -04:00
parent ad8dc8a7c9
commit c182b120c9

View File

@ -38,7 +38,8 @@
position: -webkit-sticky; // safari position: -webkit-sticky; // safari
position: sticky; position: sticky;
z-index: 1; z-index: 1;
top: 0; // turn on sticky behaviour top: -24px; // turn on sticky behaviour
height: 48px;
} }
&.nowrap { &.nowrap {
@ -55,4 +56,4 @@
} }
} }
} }
} }