diff options
author | anika-ahluwalia <anika.ahluwalia@gmail.com> | 2020-08-04 13:10:13 -0500 |
---|---|---|
committer | anika-ahluwalia <anika.ahluwalia@gmail.com> | 2020-08-04 13:10:13 -0500 |
commit | 4051758f3cef5e353cb24c699f4594fa4be81758 (patch) | |
tree | c7a9c7937e0803f34889f109d7588dfe817d357d /src/client/views/MainView.tsx | |
parent | 8192e058495155a056b83b701c90ac56115dda32 (diff) |
several UI changes and consistency updates around the system
Diffstat (limited to 'src/client/views/MainView.tsx')
-rw-r--r-- | src/client/views/MainView.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/MainView.tsx b/src/client/views/MainView.tsx index a544c52d2..e9b9be49d 100644 --- a/src/client/views/MainView.tsx +++ b/src/client/views/MainView.tsx @@ -553,7 +553,7 @@ export class MainView extends React.Component { <div className="mainView-flyoutContainer" style={{ width: this.flyoutWidth }}> {this.flyoutWidth !== 0 ? <div className="mainView-libraryHandle" onPointerDown={this.onFlyoutPointerDown} - style={{ backgroundColor: 'lightgrey' }}> + style={{ backgroundColor: '#8c8b8b' }}> <span title="library View Dragger" style={{ width: (this.flyoutWidth !== 0 && this._flyoutTranslate) ? "100%" : "3vw", //height: (this.flyoutWidth !== 0 && this._flyoutTranslate) ? "100%" : "100vh", @@ -561,7 +561,7 @@ export class MainView extends React.Component { top: (this.flyoutWidth !== 0 && this._flyoutTranslate) ? "" : "0" }} /> <div className="mainview-libraryHandle-icon"> - <FontAwesomeIcon icon="chevron-left" color="black" size="sm" /> + <FontAwesomeIcon icon="chevron-left" color="white" size="sm" /> </div> </div> : null} <div className="mainView-libraryFlyout" style={{ |