mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Using custom properties for z-index values Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Reorder values Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Remove unused styles Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Different set of z-index css vars Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Revert z-index to main layout Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
20 lines
403 B
SCSS
20 lines
403 B
SCSS
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
.AddRemoveButtons {
|
|
position: absolute;
|
|
margin: $padding * 2;
|
|
margin-right: $padding * 4;
|
|
bottom: 0;
|
|
right: 0;
|
|
|
|
.Button {
|
|
&.remove-button {
|
|
background-color: var(--borderFaintColor);
|
|
color: var(--textColorPrimary);
|
|
}
|
|
}
|
|
}
|