Skip to content

Commit f7d6b78

Browse files
committed
Add padding between information
1 parent 1f19435 commit f7d6b78

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

site/frontend/src/pages/status/page.vue

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,12 @@ loadStatusData(loading);
195195
<div class="status-page-wrapper">
196196
<div class="timeline-wrapper">
197197
<h1>Timeline</h1>
198-
<strong>Times are local.</strong>
199-
<ExpectedCurrentRequestCompletion />
198+
<span class="small-padding-bottom">
199+
<strong>Times are local.</strong>
200+
</span>
201+
<span class="small-padding-bottom">
202+
<ExpectedCurrentRequestCompletion />
203+
</span>
200204
<div style="margin-bottom: 10px">
201205
Queue length: {{ data.queueLength }}
202206
</div>
@@ -396,4 +400,8 @@ loadStatusData(loading);
396400
grid-template-columns: repeat(auto-fill, minmax(800px, 1fr));
397401
grid-gap: 20px;
398402
}
403+
404+
.small-padding-bottom {
405+
padding-bottom: 8px;
406+
}
399407
</style>

0 commit comments

Comments
 (0)