summaryrefslogtreecommitdiffstats
path: root/css
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-02-26 14:21:27 +0100
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-02-26 14:21:27 +0100
commitc55e2fca359ec59ccef053e5cb572d635c5334cc (patch)
treeb6d4b5092ad8c083ba4c35596100277b1a801b1f /css
parentd53c83d4d451c40a3662e9d7b3dab09c5a64aae8 (diff)
Removed unnecessary calc function
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'css')
-rw-r--r--css/_details.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/css/_details.scss b/css/_details.scss
index 74156ad2..a9f3cdbc 100644
--- a/css/_details.scss
+++ b/css/_details.scss
@@ -228,7 +228,7 @@ $grid-height-unit: 40px;
$grid-input-padding: 7px;
$grid-input-margin: 3px;
$grid-column-width: 380px;
-$grid-input-height-with-margin: calc(#{$grid-height-unit} - (#{$grid-input-margin} * 2));
+$grid-input-height-with-margin: #{$grid-height-unit - $grid-input-margin * 2};
@mixin generate-grid-span($default-unit) {
/* we only supports 10 props of the same type */