portal agent: style card fields to have labels/values left aligned (#56396)

This commit is contained in:
Frédéric Péters 2021-08-31 08:44:43 +02:00
parent 48b5609788
commit e7d783c3ba
1 changed files with 12 additions and 2 deletions

View File

@ -1,3 +1,4 @@
$font-color: #3c3c33;
$primary-color: #386ede;
$secondary-color: #00d6eb;
@ -241,10 +242,19 @@ div.cell {
}
}
div.card,
div.profile {
span.value {
.label {
color: lighten($font-color, 10%);
font-size: 95%;
display: block;
margin-left: 1rem;
}
.value {
display: block;
margin-left: 0;
.nodata {
font-style: italic;
}
}
}