Skip to content

Commit

Permalink
feat: init the status bar of workbench
Browse files Browse the repository at this point in the history
  • Loading branch information
wewoor committed Sep 16, 2020
1 parent 403ef36 commit abcae7e
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/workbench/statusBar/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import * as React from 'react';

import { prefixClaName } from '@/common/className';

import './statusBar.scss';

export const StatusBar: React.FunctionComponent = function() {
return (
<div className={prefixClaName('statusBar')}>
StatusBar
</div>
);
};

export default StatusBar;
12 changes: 12 additions & 0 deletions src/workbench/statusBar/statusBar.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
@import '@/style/const.scss';

.#{$prefix}-statusBar {
position: absolute;
height: 22px;
width: 100%;
bottom: 0;
z-index: 1;
// TODO temp style, just for development
background-color: rgb(0, 122, 204);
color: rgb(255, 255, 255);
}

0 comments on commit abcae7e

Please sign in to comment.