fix(css): Table cell border fix for firefox and edge browser
Firefox and Edge paints the cell background over the border of the cell. This fixes that.
This commit is contained in:
parent
226aea24df
commit
0856f6cdf7
@ -83,6 +83,12 @@
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
background-color: var(--cell-bg);
|
background-color: var(--cell-bg);
|
||||||
color: var(--text-color);
|
color: var(--text-color);
|
||||||
|
/*
|
||||||
|
Fix for firefox and Edge
|
||||||
|
https://stackoverflow.com/a/16337203
|
||||||
|
firefox paints td background over border
|
||||||
|
*/
|
||||||
|
background-clip: padding-box;
|
||||||
|
|
||||||
&__content {
|
&__content {
|
||||||
padding: var(--spacer-2);
|
padding: var(--spacer-2);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user