diff options
author | bobzel <zzzman@gmail.com> | 2023-12-11 17:04:49 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-12-11 17:04:49 -0500 |
commit | 07c30aed69dfa810ddb0b861ae2dc8e8f3a27356 (patch) | |
tree | 678a0855b169eb88fdc574fd49481ee6e57b12de /src/client/views/MainView.tsx | |
parent | 936aa21fb576472e321a9af976d5da7b75292511 (diff) |
fixed includes of scss globals into typescript files.
Diffstat (limited to 'src/client/views/MainView.tsx')
-rw-r--r-- | src/client/views/MainView.tsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/client/views/MainView.tsx b/src/client/views/MainView.tsx index a8f4020ee..1e4c1e1d3 100644 --- a/src/client/views/MainView.tsx +++ b/src/client/views/MainView.tsx @@ -69,9 +69,7 @@ import { PreviewCursor } from './PreviewCursor'; import { PropertiesView } from './PropertiesView'; import { DashboardStyleProvider, DefaultStyleProvider } from './StyleProvider'; import { TopBar } from './topbar/TopBar'; -// import { LEFT_MENU_WIDTH, TOPBAR_HEIGHT } from './global/globalCssVariables.scss'; -const LEFT_MENU_WIDTH = '60px'; -const TOPBAR_HEIGHT = '37px'; +const { default: { LEFT_MENU_WIDTH, TOPBAR_HEIGHT } } = require('./global/globalCssVariables.module.scss'); // prettier-ignore const _global = (window /* browser */ || global) /* node */ as any; @observer |