Skip to content

Commit

Permalink
table padding (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeknovy authored May 10, 2021
1 parent 0c9ed86 commit 3fb29e2
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/app/administration/api-token/api-keys.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<div class="card-body" *ngIf="apiKeys$ | async; let apiKeys">
<div class="card-body">
<div class="table-responsive" *ngIf="apiKeys$ | async; let apiKeys">
<table class="table items">
<table class="table items jtl-table">
<thead>
<tr>
<th scope="col" class="jtl-head">token</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<div class="card-body" *ngIf="projects$ | async; let projects">
<div class="card-body">
<div class="table-responsive" *ngIf="projects$ | async; let projects">
<table class="table items">
<table class="table items jtl-table">
<thead>
<tr>
<th scope="col" class="jtl-head">project name</th>
Expand Down
2 changes: 1 addition & 1 deletion src/app/administration/users/users.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<div class="card-body" *ngIf="users$ | async; let users">
<div class="card-body">
<div class="table-responsive" *ngIf="users$ | async; let users">
<table class="table items">
<table class="table items jtl-table">
<thead>
<tr>
<th scope="col" class="jtl-head">username</th>
Expand Down
2 changes: 1 addition & 1 deletion src/app/dashboard/dashboard.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ <h2 *ngIf="overallStats.totalDuration < 60" class="card-title">{{
<h6 class="card-header bg-transparent">Recent Test Runs</h6>
<div class="card-body ">
<div class="table-responsive">
<table class="table items">
<table class="table items jtl-table">
<thead>
<tr>
<th scope="col" class="jtl-head">scenario</th>
Expand Down
2 changes: 1 addition & 1 deletion src/app/scenario/scenario.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ <h6 class="card-header bg-transparent">Test Runs
</h6>
<div class="card-body">
<div class="table-responsive">
<table class="table items" [mfData]="items.data" #mf="mfDataTable">
<table class="table items jtl-table" [mfData]="items.data" #mf="mfDataTable">
<thead>
<tr>
<th scope="col" class="jtl-head vu">
Expand Down
8 changes: 8 additions & 0 deletions src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -154,3 +154,11 @@ a:hover {
.jtl-primary-color {
color: #4b7cf3;
}

.jtl-table tr td:first-child {
padding-left: 2.5rem;
}

.jtl-table tr th:first-child {
padding-left: 2.5rem;
}

0 comments on commit 3fb29e2

Please sign in to comment.