value-tile spacer thinner

This commit is contained in:
Patrick Haßel 2024-10-18 13:56:13 +02:00
parent 4ed155381a
commit 86735ba867
2 changed files with 4 additions and 4 deletions

View File

@ -14,8 +14,8 @@
{{ display?.iValue?.unit }} {{ display?.iValue?.unit }}
</td> </td>
</tr> </tr>
<tr *ngIf="!display" class="spacer"> <tr *ngIf="display === null">
<td colspan="3"></td> <td colspan="3" class="spacer"></td>
</tr> </tr>
</ng-container> </ng-container>
</table> </table>

View File

@ -45,8 +45,8 @@
} }
.spacer { .spacer {
height: 1px; height: 0;
background-color: lightgray; border-top: 1px solid lightgray;
} }
} }