Skip to content

Commit e19d60e

Browse files
authored
Merge pull request #48262 from phillip-kruger/dev-ui-health-small-fix
Small cosmetic change for new health-ui
2 parents bbfd07d + db0fb63 commit e19d60e

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

extensions/smallrye-health/deployment/src/main/resources/dev-ui/qwc-smallrye-health-ui.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@ export class QwcSmallryeHealthUi extends QwcHotReloadElement {
2828
.cardcontents {
2929
display: flex;
3030
flex-direction: column;
31+
padding-top: 10px;
32+
padding-bottom: 10px;
33+
padding-left: 2px;
34+
padding-right: 2px;
35+
}
36+
.key {
37+
font-weight: bold;
3138
}
3239
.entry {
3340
display: flex;
@@ -117,8 +124,7 @@ export class QwcSmallryeHealthUi extends QwcHotReloadElement {
117124
<div class="cardcontents">
118125
${Object.entries(check.data).map(([key, value]) => html`
119126
<div class="entry">
120-
<span>${key}</span>
121-
<span>${value.string}</span>
127+
<span class="key">${key}: </span><span>${value.string}</span>
122128
</div>
123129
`)}
124130
</div>

0 commit comments

Comments
 (0)