Skip to content

Commit

Permalink
add space between items in vuln page
Browse files Browse the repository at this point in the history
* adds padding in between scan now and results of the scan

Signed-off-by: bupd <bupdprasanth@gmail.com>
  • Loading branch information
bupd committed Oct 15, 2024
1 parent 29ec011 commit 7e586cb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
(inputvalue)="saveSchedule($event)"></cron-selection>
</div>
</section>
<div class="clr-col">
<div class="clr-col-2 flex-200">
<div class="clr-col-5">
<div class="clr-row-3">
<div class="btn-scan-right btn-scan margin-top-16px">
<button
id="scan"
Expand All @@ -39,7 +39,9 @@
class="spinner spinner-inline margin-left-5 v-mid"></span>
</div>
</div>
<div class="clr-col" *ngIf="scanningMetrics && scanningMetrics.total">
<div
class="clr-row-2 pt-4"
*ngIf="scanningMetrics && scanningMetrics.total">
<div class="total" [style.width]="totalWidth + 'px'">
<span class="float-left" *ngIf="isManual()">{{
'CONFIG.SCANNING.MANUAL' | translate
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
width: 160px;
margin-bottom: 0;
margin-top: 41px;
}
}
}
}

Expand Down Expand Up @@ -73,6 +73,10 @@
flex: 0 0 200px;
}

.pt-4 {
padding-top: 1rem;
}

.total {
text-align: right;
line-height: 15px;
Expand Down

0 comments on commit 7e586cb

Please sign in to comment.