Updating tables not to have top border and margin as requested

This commit is contained in:
lepipele
2018-04-08 00:06:47 -05:00
parent 9c798fc2e2
commit 48832f9ac3
11 changed files with 13 additions and 13 deletions

View File

@@ -22,7 +22,7 @@
<div class="row">
<a asp-action="CreateApp" class="btn btn-success" role="button"><span class="fa fa-plus"></span> Create a new app</a>
<table class="table table-sm table-responsive-md mt-2">
<table class="table table-sm table-responsive-md">
<thead>
<tr>
<th>Store</th>

View File

@@ -40,7 +40,7 @@
<div class="row">
<a asp-action="CreateInvoice" class="btn btn-success" role="button"><span class="fa fa-plus"></span> Create a new invoice</a>
<table class="table table-sm table-responsive-md mt-2">
<table class="table table-sm table-responsive-md">
<thead>
<tr>
<th>Date</th>

View File

@@ -8,7 +8,7 @@
@if (Model.CurrentLogins?.Count > 0)
{
<h4>Registered Logins</h4>
<table class="table table-sm table-responsive-md mt-2">
<table class="table table-sm table-responsive-md">
<tbody>
@foreach (var login in Model.CurrentLogins)
{

View File

@@ -9,7 +9,7 @@
@Html.Partial("_StatusMessage", Model.StatusMessage)
<table class="table table-sm table-responsive-md mt-2">
<table class="table table-sm table-responsive-md">
<thead>
<tr>
<th>Name</th>

View File

@@ -42,7 +42,7 @@
</div>
<div class="form-group">
<span>BTCPay format memo</span>
<table class="table table-sm table-responsive-md mt-2">
<table class="table table-sm table-responsive-md">
<thead>
<tr>
<th>Address type</th>
@@ -88,7 +88,7 @@
<input type="hidden" asp-for="Confirmation" />
<input type="hidden" asp-for="DerivationScheme" />
<div class="form-group">
<table class="table table-sm table-responsive-md mt-2">
<table class="table table-sm table-responsive-md">
<thead>
<tr>
<th>Key path</th>

View File

@@ -9,7 +9,7 @@
<p>You can allow a public key to access the API of this store</p>
@Html.Partial("_StatusMessage", Model.StatusMessage)
<a asp-action="CreateToken" class="btn btn-success" role="button"><span class="fa fa-plus"></span>Create a new token</a>
<table class="table table-sm table-responsive-md mt-2">
<table class="table table-sm table-responsive-md">
<thead>
<tr>
<th>Label</th>

View File

@@ -15,7 +15,7 @@
<div class="row">
<div class="col-md-4"></div>
<div class="col-md-4">
<table class="table table-sm table-responsive-md mt-2">
<table class="table table-sm table-responsive-md">
<tr>
<th>Label</th>
<td style="text-align:right;">@Model.Label</td>

View File

@@ -33,7 +33,7 @@
</form>
</div>
<div class="form-group">
<table class="table table-sm table-responsive-md mt-2">
<table class="table table-sm table-responsive-md">
<thead>
<tr>
<th>Email</th>

View File

@@ -72,7 +72,7 @@
</div>
<div class="form-group">
<table class="table table-sm table-responsive-md mt-2">
<table class="table table-sm table-responsive-md">
<thead>
<tr>
<th>Crypto</th>
@@ -108,7 +108,7 @@
</p>
</div>
<div class="form-group">
<table class="table table-sm table-responsive-md mt-2">
<table class="table table-sm table-responsive-md">
<thead>
<tr>
<th>Crypto</th>

View File

@@ -22,7 +22,7 @@
<div class="row">
<a asp-action="CreateStore" class="btn btn-success" role="button"><span class="fa fa-plus"></span> Create a new store</a>
<table class="table table-sm table-responsive-md mt-2">
<table class="table table-sm table-responsive-md">
<thead>
<tr>
<th>Name</th>

View File

@@ -1047,7 +1047,7 @@ pre {
.table td {
padding: 0.75rem;
vertical-align: top;
border-top: 1px solid #dee2e6; }
border-top: 0px solid #dee2e6; }
.table thead th {
vertical-align: bottom;
border-bottom: 2px solid #dee2e6; }