mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Expanding tolerations div width Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Adding tolerations table Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Fixing tolerations table styles Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Adding <PodTolerations/> tests Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Add new line at the end of the file for linter Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
23 lines
401 B
SCSS
23 lines
401 B
SCSS
.PodDetailsTolerations {
|
|
grid-template-columns: auto;
|
|
|
|
.PodTolerations {
|
|
margin-top: var(--margin);
|
|
}
|
|
|
|
// Expanding value cell to cover 2 columns (whole Drawer width)
|
|
|
|
> .name {
|
|
grid-row-start: 1;
|
|
grid-column-start: 1;
|
|
}
|
|
|
|
> .value {
|
|
grid-row-start: 1;
|
|
grid-column-start: 1;
|
|
}
|
|
|
|
.DrawerParamToggler > .params {
|
|
margin-left: var(--drawer-item-title-width);
|
|
}
|
|
} |