We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db03bc5 commit 403ef36Copy full SHA for 403ef36
src/workbench/sidebar/index.tsx
@@ -0,0 +1,14 @@
1
+import * as React from 'react';
2
+
3
+import { prefixClaName } from '@/common/className';
4
5
+import './sidebar.scss';
6
7
+const Sidebar: React.FunctionComponent = () => {
8
+ return (
9
+ <div className={prefixClaName('sidebar')}>
10
+ Sidebar
11
+ </div>
12
+ );
13
+};
14
+export default Sidebar;
src/workbench/sidebar/sidebar.scss
@@ -0,0 +1,12 @@
+@import '@/style/const.scss';
+.#{$prefix}-sidebar {
+ position: relative;
+ left: 0;
+ min-width: 246px;
+ width: 100%;
+ height: 100%;
+ // TODO temp style, just for development
+ background-color: rgb(37, 37, 38);
+ outline-color: rgba(83, 89, 93, 0.5);
+}
0 commit comments