Skip to content

Commit abcae7e

Browse files
committed
feat: init the status bar of workbench
1 parent 403ef36 commit abcae7e

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

src/workbench/statusBar/index.tsx

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import * as React from 'react';
2+
3+
import { prefixClaName } from '@/common/className';
4+
5+
import './statusBar.scss';
6+
7+
export const StatusBar: React.FunctionComponent = function() {
8+
return (
9+
<div className={prefixClaName('statusBar')}>
10+
StatusBar
11+
</div>
12+
);
13+
};
14+
15+
export default StatusBar;
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
@import '@/style/const.scss';
2+
3+
.#{$prefix}-statusBar {
4+
position: absolute;
5+
height: 22px;
6+
width: 100%;
7+
bottom: 0;
8+
z-index: 1;
9+
// TODO temp style, just for development
10+
background-color: rgb(0, 122, 204);
11+
color: rgb(255, 255, 255);
12+
}

0 commit comments

Comments
 (0)