Skip to content

Commit 3d8a63a

Browse files
Fixed login button alignment and headings alignment
1 parent 70c355c commit 3d8a63a

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.titleAlign{
2+
margin-left:15px;
3+
}

client/src/app/dashboard/table-overview/table-overview.component.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
-->
1818

1919
<div class="container-fluid">
20-
<h4> WebApi Details</h4>
20+
<h4 [ngClass]="'titleAlign'"> WebApi Details</h4>
2121
<div class="row">
2222
<div class="col-md-8 col-sm-12">
2323
<app-table-all type="WebApi" [dataArray]="webapiDetails"> </app-table-all>
@@ -27,7 +27,7 @@ <h4> WebApi Details</h4>
2727
</div>
2828

2929
</div>
30-
<h4> Web Application Details </h4>
30+
<h4 [ngClass]="'titleAlign'"> Web Application Details </h4>
3131
<div class="row">
3232
<div class="col-md-8 col-sm-12">
3333
<app-table-all type="WebApp" [dataArray]="webappDetails"> </app-table-all>
@@ -36,7 +36,7 @@ <h4> Web Application Details </h4>
3636
<app-info-center [compType]="'WebApp'"></app-info-center>
3737
</div>
3838
</div>
39-
<h4> Crawler Details</h4>
39+
<h4 [ngClass]="'titleAlign'"> Crawler Details</h4>
4040
<div class="row">
4141
<div class="col-md-8 col-sm-12">
4242
<app-table-all type="Crawler" [dataArray]="crawlerDetails"> </app-table-all>

client/src/app/landing-page/landing-page.component.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@
3333
transform: translate(-50%, -50%);
3434
}
3535
.loginbtn{
36-
padding-left: 30%;
36+
padding-left: 25%;
3737
}

0 commit comments

Comments
 (0)