36 lines
748 B
SCSS
36 lines
748 B
SCSS
@import './healthcheck-output/index';
|
|
@import './icons/index';
|
|
.healthcheck-output {
|
|
@extend %healthcheck-output;
|
|
}
|
|
%healthcheck-output.passing {
|
|
@extend %with-passing;
|
|
}
|
|
%healthcheck-output.warning {
|
|
@extend %with-warning;
|
|
}
|
|
%healthcheck-output.critical {
|
|
@extend %with-critical;
|
|
}
|
|
@media #{$--lt-spacious-healthcheck-output} {
|
|
.healthcheck-output button.copy-btn {
|
|
margin-top: -11px;
|
|
margin-right: -18px;
|
|
padding: 0;
|
|
width: 20px;
|
|
visibility: hidden;
|
|
}
|
|
%healthcheck-output {
|
|
padding-left: 30px;
|
|
padding-top: 10px;
|
|
padding-bottom: 15px;
|
|
padding-right: 13px;
|
|
}
|
|
%healthcheck-output::before {
|
|
width: 15px !important;
|
|
height: 15px !important;
|
|
left: 9px;
|
|
top: 13px !important;
|
|
}
|
|
}
|