Update NuGet x SMART (completato)

This commit is contained in:
Samuele E. Locatelli
2020-01-28 11:34:21 +01:00
parent 47e21266dd
commit 6b591fa605
30 changed files with 96 additions and 96 deletions
@@ -13,7 +13,7 @@ export default function getBordersSize(styles, axis) {
const sideB = sideA === 'Left' ? 'Right' : 'Bottom';
return (
parseFloat(styles[`border${sideA}Width`], 10) +
parseFloat(styles[`border${sideB}Width`], 10)
parseFloat(styles[`border${sideA}Width`]) +
parseFloat(styles[`border${sideB}Width`])
);
}