From b3e71380bf846da1cfe234c579838cc017733fa0 Mon Sep 17 00:00:00 2001 From: Cheton Wu Date: Tue, 2 May 2017 23:06:47 +0800 Subject: [PATCH] [Windows] Fixed a CSS bug that set incorrect table width and height to the workspace table --- src/web/containers/Workspace/index.styl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/web/containers/Workspace/index.styl b/src/web/containers/Workspace/index.styl index 4c82c88ca..846fd710a 100644 --- a/src/web/containers/Workspace/index.styl +++ b/src/web/containers/Workspace/index.styl @@ -32,8 +32,7 @@ .workspace-table { display: table; - width: 'calc(100vw - %s)' % ($sidebar-width); - height: 'calc(100vh - %s)' % ($navbar-height); + width: 100%; } .workspace-table-row { display: table-row;