From 68dccf85753b1af30c846aebfcd829ec0128f9bd Mon Sep 17 00:00:00 2001 From: Balazs Gobel Date: Fri, 8 Feb 2019 13:08:06 +0100 Subject: [PATCH] Fix pixel misalignment between table header and body --- src/main.less | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main.less b/src/main.less index 9f96728..3af446a 100644 --- a/src/main.less +++ b/src/main.less @@ -2,6 +2,12 @@ @TableBorder: 1px solid #d3d3d3; @KpiTableWidth: 230px; + *, + *:before, + *:after { + box-sizing: border-box; + } + ._cell(@Width: 50px) { min-width: @Width!important; max-width: @Width!important;