Addressing CSS inconsistencies compared to old design

Fixes: #1159
This commit is contained in:
rockstardev
2019-11-14 22:48:15 -06:00
parent 7bce316e78
commit 5eeda40098
2 changed files with 9 additions and 2 deletions

View File

@@ -68,6 +68,7 @@ a.nav-link:hover {
color: var(--btcpay-nav-color-link-active, var(--btcpay-color-neutral-900));
background: var(--btcpay-bg-nav-link-active, var(--btcpay-color-primary-backdrop));
font-weight: 500;
border-left: 5px solid var(--btcpay-color-primary);
}
.display-when-ledger-connected {

View File

@@ -57,7 +57,7 @@
--btcpay-bg-nav-link-active: #d9f7ef;
--btcpay-font-size-base: 14px;
--btcpay-font-size-base: 16px;
--btcpay-font-family-head: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
--btcpay-font-family-base: 'Helvetica Neue', Arial, sans-serif;
--btcpay-font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
@@ -82,12 +82,13 @@ html {
}
.table thead > tr {
height: 36px;
height: 40px;
}
.table thead th {
border-bottom: none;
border-top: none;
font-size: 0.95rem;
}
.table th,
@@ -95,6 +96,11 @@ html {
display: table-cell;
padding: 8px 12px;
vertical-align: middle;
font-size: 0.85rem;
}
.table tbody tr:hover {
background-color: var(--btcpay-color-neutral-100);
}
.removetopborder tr:first-child th,