Skip to content

Commit

Permalink
Ⓜ️ Make follow logs a fixed position element
Browse files Browse the repository at this point in the history
  • Loading branch information
jsnjack committed Feb 24, 2020
1 parent 2ad0413 commit 066918c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/frontend/src/views/BuildView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@
:ref="'task-'+item.id"
></TaskItem>
<Artifacts :artifacts="getArtifacts" :buildID="statusUpdate.id"></Artifacts>
<div class="form-group float-right">
<div class="follow-logs form-group float-right">
<label class="form-switch">
<input type="checkbox" v-model="follow" />
<i class="form-icon"></i> Follow logs
<i class="form-icon"></i> Follow
</label>
</div>
</div>
Expand Down Expand Up @@ -200,4 +200,10 @@ summary:hover {
.item-action {
margin: 0.25em;
}
.follow-logs {
position: fixed;
bottom: 10px;
right: 10px;
opacity: 0.9;
}
</style>

0 comments on commit 066918c

Please sign in to comment.