mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
44 lines
715 B
SCSS
44 lines
715 B
SCSS
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
.PageLayout.Extensions {
|
|
$spacing: $padding * 2;
|
|
width: 100%;
|
|
|
|
.contentRegion {
|
|
.content {
|
|
max-width: 740px;
|
|
|
|
> section {
|
|
height: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.InstallingExtensionNotification {
|
|
.remove-folder-warning {
|
|
font-size: $font-size-small;
|
|
font-style: italic;
|
|
opacity: .8;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
code {
|
|
display: inline;
|
|
color: inherit;
|
|
}
|
|
}
|
|
|
|
.Button {
|
|
background-color: unset;
|
|
border: 1px solid currentColor;
|
|
box-shadow: none !important;
|
|
}
|
|
}
|