Bootstrap: Fix table styles (#3079)

This commit is contained in:
d11n 2021-11-08 12:16:57 +01:00 committed by GitHub
parent 3c13d6c195
commit bbcdd5ed0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1577,7 +1577,7 @@ progress {
}
.table > :not(:first-child) {
border-top: 2px solid currentColor;
border-top: 2px solid var(--btcpay-body-border-medium);
}
.caption-top {
@ -9991,6 +9991,11 @@ textarea.w-auto {
margin: 1.5rem -.5rem;
}
/* Fix table group border width */
.table > :not(:first-child) {
border-top-width: 1px;
}
/* custom utility classes */
.bg-tile {
background-color: var(--btcpay-bg-tile);