mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
41 lines
695 B
SCSS
41 lines
695 B
SCSS
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
.StatusBar {
|
|
--status-bar-height: 21px;
|
|
color: white;
|
|
|
|
grid-area: status-bar;
|
|
background-color: var(--blue);
|
|
height: var(--status-bar-height);
|
|
font-size: var(--font-size-small);
|
|
|
|
display: inline-grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
|
|
.leftSide {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.rightSide {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.item {
|
|
height: 100%;
|
|
padding: 0 4px;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
&:hover {
|
|
cursor: pointer;
|
|
background-color: #ffffff33;
|
|
}
|
|
}
|