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:
Faris Ansari 2018-07-14 11:28:04 +05:30
parent 226aea24df
commit 0856f6cdf7

View File

@ -83,6 +83,12 @@
padding: 0;
background-color: var(--cell-bg);
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 {
padding: var(--spacer-2);