mirror of
https://github.com/status-im/consul.git
synced 2025-01-24 04:31:12 +00:00
6589cbbd0d
* ui: Add the most basic workspace root in /ui * We already have a LICENSE file in the repository root * Change directory path in build scripts ui-v2 -> ui * Make yarn install flags configurable from elsewhere * Minimal workspace root makefile * Call the new docker specific target * Update yarn in the docker build image * Reconfigure the netlify target and move to the higher makefile * Move ui-v2 -> ui/packages/consul-ui * Change repo root to refleect new folder structure * Temporarily don't hoist consul-api-double * Fixup CI configuration * Fixup lint errors * Fixup Netlify target
86 lines
1.6 KiB
SCSS
86 lines
1.6 KiB
SCSS
%healthcheck-output {
|
|
display: flex;
|
|
padding: 20px 16px;
|
|
padding-right: 24px;
|
|
}
|
|
%healthcheck-output:not(:last-child) {
|
|
margin-bottom: 24px;
|
|
}
|
|
%healthcheck-output::before {
|
|
margin-right: 15px;
|
|
}
|
|
%healthcheck-output > div {
|
|
flex: 1 1 auto;
|
|
}
|
|
%healthcheck-output header,
|
|
%healthcheck-output dl:last-of-type {
|
|
width: 100%;
|
|
}
|
|
%healthcheck-output header {
|
|
margin-bottom: 0.9em;
|
|
}
|
|
%healthcheck-output > div {
|
|
// 100% minus the width of the icon space (26)
|
|
width: calc(100% - 26px);
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
}
|
|
%healthcheck-output dl {
|
|
min-width: 110px;
|
|
}
|
|
%healthcheck-output dl > * {
|
|
display: block;
|
|
width: auto;
|
|
position: static;
|
|
padding-left: 0;
|
|
}
|
|
%healthcheck-output dt {
|
|
margin-bottom: 0;
|
|
}
|
|
%healthcheck-output dd {
|
|
position: relative;
|
|
}
|
|
|
|
%healthcheck-output dl:nth-last-of-type(2) {
|
|
width: 50%;
|
|
}
|
|
%healthcheck-output dl:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
%healthcheck-output dl:last-of-type dt {
|
|
margin-bottom: 0.3em;
|
|
}
|
|
|
|
%healthcheck-output pre {
|
|
padding: 12px;
|
|
padding-right: 40px;
|
|
white-space: pre-wrap;
|
|
position: relative;
|
|
}
|
|
%healthcheck-output pre code {
|
|
word-wrap: break-word;
|
|
}
|
|
%healthcheck-output .copy-button {
|
|
position: absolute;
|
|
right: 0.5em;
|
|
top: 1em;
|
|
}
|
|
@media #{$--lt-spacious-healthcheck-output} {
|
|
%healthcheck-output {
|
|
padding-top: 15px;
|
|
padding-bottom: 15px;
|
|
padding-left: 14px;
|
|
padding-right: 19px;
|
|
}
|
|
%healthcheck-output::before {
|
|
margin-right: 8px;
|
|
}
|
|
%healthcheck-output dl:nth-last-of-type(2) {
|
|
width: 100%;
|
|
}
|
|
%healthcheck-output dl:not(:last-of-type) {
|
|
margin-right: 0;
|
|
}
|
|
}
|