diff --git a/web/app/components/auth-panel/__column/auth-panel__column.scss b/web/app/components/auth-panel/__column/auth-panel__column.scss
index 3dadbf14..fa430522 100644
--- a/web/app/components/auth-panel/__column/auth-panel__column.scss
+++ b/web/app/components/auth-panel/__column/auth-panel__column.scss
@@ -1,6 +1,7 @@
.auth-panel__column {
&:nth-child(1) {
overflow: hidden;
+ font-weight: 700;
text-overflow: ellipsis;
}
diff --git a/web/app/components/auth-panel/_logged-in/auth-panel_logged-in.scss b/web/app/components/auth-panel/_logged-in/auth-panel_logged-in.scss
index a47051c6..758c7d36 100644
--- a/web/app/components/auth-panel/_logged-in/auth-panel_logged-in.scss
+++ b/web/app/components/auth-panel/_logged-in/auth-panel_logged-in.scss
@@ -1,4 +1,9 @@
.auth-panel_logged-in {
font-size: 12px;
- font-weight: 400;
+
+ .auth-panel__column {
+ &:first-child {
+ font-weight: 400;
+ }
+ }
}
diff --git a/web/app/components/auth-panel/auth-panel.jsx b/web/app/components/auth-panel/auth-panel.jsx
index 20859d48..534d437a 100644
--- a/web/app/components/auth-panel/auth-panel.jsx
+++ b/web/app/components/auth-panel/auth-panel.jsx
@@ -88,21 +88,17 @@ export default class AuthPanel extends Component {
{user.admin && ' • '}
- {
- !!user.id && (
-
- Sort by
- {' '}
-
-
- )
- }
+
+ Sort by
+ {' '}
+
+
);
diff --git a/web/app/components/auth-panel/auth-panel.scss b/web/app/components/auth-panel/auth-panel.scss
index a5749217..03c6138a 100644
--- a/web/app/components/auth-panel/auth-panel.scss
+++ b/web/app/components/auth-panel/auth-panel.scss
@@ -2,6 +2,5 @@
display: flex;
justify-content: space-between;
font-size: 14px;
- font-weight: 700;
line-height: 16px;
}