aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/topbar
diff options
context:
space:
mode:
authorAubrey-Li <63608597+Aubrey-Li@users.noreply.github.com>2021-07-31 22:08:41 -0700
committerAubrey-Li <63608597+Aubrey-Li@users.noreply.github.com>2021-07-31 22:08:41 -0700
commitf4b910cc51c7c6b9c794d1b59198d132af3580b7 (patch)
tree6aa1b6237c3d12918c0dd04c219733333da2402d /src/client/views/topbar
parent621b64bc6063da1d7fd95fcee9eed5dc853bd18a (diff)
parentb1361eec6d3f554d4927931c339b5c169b9a54a7 (diff)
Merge branch 'master' into trails-aubrey
Diffstat (limited to 'src/client/views/topbar')
-rw-r--r--src/client/views/topbar/TopBar.scss12
-rw-r--r--src/client/views/topbar/TopBar.tsx1
2 files changed, 8 insertions, 5 deletions
diff --git a/src/client/views/topbar/TopBar.scss b/src/client/views/topbar/TopBar.scss
index ebdf030e7..164cc29cd 100644
--- a/src/client/views/topbar/TopBar.scss
+++ b/src/client/views/topbar/TopBar.scss
@@ -23,6 +23,7 @@
.topBar-icon {
cursor: pointer;
font-size: 12px;
+ font-family: 'Roboto';
width: fit-content;
display: flex;
justify-content: center;
@@ -49,12 +50,15 @@
align-items: center;
gap: 5px;
+ .topbar-dashboards {
+ display: flex;
+ flex-direction: row;
+ }
+
.topbar-lozenge-dashboard {
display: flex;
- .topbar-dashboards {
- display: inline-flex;
- }
+
.topbar-dashSelect {
border: none;
@@ -91,7 +95,7 @@
gap: 5px;
.topBar-icon:hover {
- background-color: $logout-red;
+ background-color: $close-red;
}
.topbar-lozenge-user,
diff --git a/src/client/views/topbar/TopBar.tsx b/src/client/views/topbar/TopBar.tsx
index bd9935333..05edb975c 100644
--- a/src/client/views/topbar/TopBar.tsx
+++ b/src/client/views/topbar/TopBar.tsx
@@ -12,7 +12,6 @@ import { Borders, Colors } from "../global/globalEnums";
import "./TopBar.scss";
/**
- * REACT TYPE: FUNCTIONAL
* ABOUT: This is the topbar in Dash, which included the current Dashboard as well as access to information on the user
* and settings and help buttons. Future scope for this bar is to include the collaborators that are on the same Dashboard.
*/