1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/add-remove-buttons/add-remove-buttons.scss
Alex Andreev 4af8fbaa34
Using custom properties for z-index values (#6733)
* 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>
2022-12-13 16:36:51 +03:00

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);
}
}
}