Skip to content

Commit dbe537a

Browse files
committed
reduce margins
1 parent 2b94760 commit dbe537a

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

web_src/js/components/RepoActionView.vue

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<button class="ui basic small compact button red" @click="cancelRun()" v-else-if="run.canCancel">
1515
{{ locale.cancel }}
1616
</button>
17-
<button class="ui basic small compact button secondary" @click="rerun()" v-else-if="run.canRerun">
17+
<button class="ui basic small compact button secondary gt-mr-0" @click="rerun()" v-else-if="run.canRerun">
1818
{{ locale.rerun_all }}
1919
</button>
2020
</div>
@@ -422,19 +422,20 @@ export function ansiLogToHTML(line) {
422422
<style scoped>
423423
.action-view-body {
424424
display: flex;
425+
gap: 12px;
425426
}
426427
427428
/* ================ */
428429
/* action view header */
429430
430431
.action-view-header {
431-
margin: 20px 0px;
432+
margin-top: 8px;
433+
margin-bottom: 4px;
432434
}
433435
434436
.action-info-summary {
435437
display: flex;
436438
align-items: center;
437-
margin-top: 1rem;
438439
justify-content: space-between;
439440
}
440441
@@ -451,11 +452,12 @@ export function ansiLogToHTML(line) {
451452
.action-commit-summary {
452453
display: flex;
453454
gap: 5px;
454-
margin: 10px 0 0 25px;
455+
margin: 5px 0 0 25px;
455456
}
456457
457458
.action-view-left, .action-view-right {
458-
padding: 12px;
459+
padding-top: 12px;
460+
padding-bottom: 12px;
459461
}
460462
461463
/* ================ */

0 commit comments

Comments
 (0)