Completo update NuGet x commesse

This commit is contained in:
Samuele E. Locatelli
2020-01-28 11:11:48 +01:00
parent dadee31256
commit 69b553396b
29 changed files with 79 additions and 79 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`])
);
}