diff options
author | eperelm2 <emily_perelman@brown.edu> | 2023-06-20 11:55:32 -0400 |
---|---|---|
committer | eperelm2 <emily_perelman@brown.edu> | 2023-06-20 11:55:32 -0400 |
commit | 50ee9be87269ced48f0c0c8867316c9ff0b4258b (patch) | |
tree | 61c0dc0a25d64ee1282ae0dd0c9d3ac8ce3bd974 /src/client/views/MainView.tsx | |
parent | 62339a419ddf1ba64b869a8ce0a45f6e47348528 (diff) |
fixing buttons tues morn
Diffstat (limited to 'src/client/views/MainView.tsx')
-rw-r--r-- | src/client/views/MainView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/MainView.tsx b/src/client/views/MainView.tsx index 50f451c0a..541b74722 100644 --- a/src/client/views/MainView.tsx +++ b/src/client/views/MainView.tsx @@ -810,7 +810,7 @@ export class MainView extends React.Component { {this.dockingContent} {this._hideUI ? null : ( - <div className="mainView-propertiesDragger" key="props" onPointerDown={this.onPropertiesPointerDown} style={{ right: this.propertiesWidth() - 1 }}> + <div className="mainView-propertiesDragger" key="props" onPointerDown={this.onPropertiesPointerDown} style={{ right: this.propertiesWidth() - 1, background : 'linen' }}> <FontAwesomeIcon icon={this.propertiesWidth() < 10 ? 'chevron-left' : 'chevron-right'} color={this.colorScheme === ColorScheme.Dark ? Colors.WHITE : Colors.BLACK} size="sm" /> </div> )} |