mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
25 lines
352 B
SCSS
25 lines
352 B
SCSS
.ServicePorts {
|
|
&.waiting {
|
|
opacity: 0.5;
|
|
pointer-events: none;
|
|
}
|
|
|
|
p {
|
|
&:not(:last-child) {
|
|
margin-bottom: $margin;
|
|
}
|
|
|
|
span {
|
|
cursor: pointer;
|
|
color: $primary;
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
.Spinner {
|
|
--spinner-size: #{$unit * 2};
|
|
margin-left: $margin;
|
|
position: absolute;
|
|
}
|
|
}
|