mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
26 lines
476 B
SCSS
26 lines
476 B
SCSS
.AddCluster {
|
|
--flex-gap: #{$padding * 2};
|
|
|
|
position: relative;
|
|
padding: $padding * 3;
|
|
height: 100%;
|
|
display: grid;
|
|
grid-template-columns: 1fr 40%;
|
|
|
|
> .content {
|
|
padding: var(--flex-gap);
|
|
margin-right: var(--flex-gap);
|
|
background-color: var(--clusters-menu-bgc);
|
|
border-radius: $radius;
|
|
}
|
|
|
|
> .info-panel {
|
|
@include hidden-scrollbar;
|
|
padding: var(--flex-gap);
|
|
border-left: 1px solid #353a3e;
|
|
}
|
|
|
|
a {
|
|
color: $colorInfo;
|
|
}
|
|
} |