Skip to content

Commit

Permalink
Fixed a bug of incorrectly using stylus variable in calc (fixed 9ba87b1)
Browse files Browse the repository at this point in the history
  • Loading branch information
cheton committed May 14, 2017
1 parent e3753e6 commit 0e6d014
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/web/containers/Workspace/index.styl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
.workspace-table {
display: table;
width: 100%;
height: calc(100vh - $navbar-height);
height: 'calc(100vh - %s)' % ($navbar-height);
}
.workspace-table-row {
display: table-row;
Expand Down

0 comments on commit 0e6d014

Please sign in to comment.