1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-22 01:44:25 +04:00
Co-authored-by: Paweł Kuna <1282324+codecalm@users.noreply.github.com>
This commit is contained in:
Resul Elezi
2025-09-18 18:19:24 +02:00
committed by GitHub
parent f763e3b1dd
commit 9a3361f8ba
3 changed files with 22 additions and 4 deletions

View File

@@ -0,0 +1,5 @@
---
"@tabler/core": patch
---
Fix double bottom border in tables.

View File

@@ -438,6 +438,23 @@ Card table
}
}
tbody {
tr {
&:last-child {
td {
border-bottom: 0;
}
}
}
}
tfoot {
tr {
&:last-child {
border-bottom: 0;
}
}
}
.card-body + & {
border-top: var(--#{$prefix}border-width) var(--#{$prefix}border-style) var(--#{$prefix}table-border-color);
}

View File

@@ -18,10 +18,6 @@
.table {
margin-bottom: 0;
}
+ .card-footer {
border-top: 0;
}
}
.table-transparent {