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

Fix column css for release details resources

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2022-09-08 08:24:32 -04:00
parent 2a7788bcf9
commit 94e83cd110

View File

@ -49,16 +49,19 @@
.TableCell { .TableCell {
text-overflow: unset; text-overflow: unset;
word-break: break-word; word-break: break-word;
min-width: 100px;
&.name { &.name {
flex-basis: auto; flex-grow: 3;
flex-grow: 0;
width: 230px;
} }
&.volume { &.namespace {
flex-basis: 30%; flex-grow: 1;
}
&.age {
flex-basis: 100px;
flex-grow: 0;
flex-shrink: 0;
} }
} }
} }