feat(sync): add horizontal padding between table columns in conflict dialog

This commit is contained in:
Johannes Millan 2025-06-25 18:49:57 +02:00
parent 133d1b6145
commit b3a82294f1
2 changed files with 10 additions and 2 deletions

View file

@ -75,6 +75,7 @@
<!-- Vector Clock Table -->
@if (localVectorClock || remoteVectorClock) {
<h3>Vector Clock</h3>
<table>
<tr>
<td>{{ T.F.SYNC.D_CONFLICT.REMOTE | translate }}</td>
@ -91,7 +92,7 @@
<tr>
<td>{{ T.F.SYNC.D_CONFLICT.COMPARISON_RESULT | translate }}</td>
<td>
<strong>{{ getVectorClockComparisonLabel() }}</strong>
<strong>{{ getVectorClockComparisonLabel() | translate }}</strong>
</td>
</tr>
</table>

View file

@ -13,11 +13,18 @@ table + table {
margin-top: 20px;
}
td {
td,
th {
padding: 2px 8px;
text-align: center;
&:first-child {
text-align: left;
padding-left: 0;
}
&:last-child {
padding-right: 0;
}
}