diff options
| author | bobzel <zzzman@gmail.com> | 2021-09-02 10:16:11 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-09-02 10:16:11 -0400 |
| commit | 4e2e798e0d97858dd03748709d3d55f15a9a1360 (patch) | |
| tree | 4940c2dc2239bcd6b73a567358eebced1394df65 /src/client/views/topbar | |
| parent | 01cab1fc7259f1a944fad49403328e70e9d61b97 (diff) | |
| parent | 6a2be14c25313058ff466ed7c2a6631126616263 (diff) | |
Merge branch 'menu_updates_geireann' of https://github.com/brown-dash/Dash-Web into menu_updates_geireann
Diffstat (limited to 'src/client/views/topbar')
| -rw-r--r-- | src/client/views/topbar/TopBar.scss | 4 | ||||
| -rw-r--r-- | src/client/views/topbar/TopBar.tsx | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/client/views/topbar/TopBar.scss b/src/client/views/topbar/TopBar.scss index 05aeb177c..923f1892e 100644 --- a/src/client/views/topbar/TopBar.scss +++ b/src/client/views/topbar/TopBar.scss @@ -33,12 +33,12 @@ align-self: center; border-radius: $standard-border-radius; padding: 5px; - transition: linear 0.1s; + transition: linear 0.2s; color: $black; background-color: $light-gray; &:hover { - background-color: $light-blue; + background-color: darken($color: $light-gray, $amount: 20); } } diff --git a/src/client/views/topbar/TopBar.tsx b/src/client/views/topbar/TopBar.tsx index 4dbd5e22c..d5254e315 100644 --- a/src/client/views/topbar/TopBar.tsx +++ b/src/client/views/topbar/TopBar.tsx @@ -51,7 +51,8 @@ export class TopBar extends React.Component { </div> </div> <div className="topbar-right" > - <div className="topbar-icon"> + <div className="topbar-icon" onClick={() => window.open( + "https://brown-dash.github.io/Dash-Documentation/", "_blank")}> {"Help"}<FontAwesomeIcon icon="question-circle"></FontAwesomeIcon> </div> <div className="topbar-icon" onClick={() => SettingsManager.Instance.open()}> |
