File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ export default function PillMenuItem(p: {
14
14
onClick ?: ( event : React . MouseEvent ) => void ;
15
15
} ) {
16
16
let classes =
17
- "flex block font-medium dark:text-gray-400 px-3 py-1 rounded-2xl transition ease-in-out font-semibold " +
17
+ "flex block font-medium dark:text-gray-400 px-3 py-1 rounded-2xl transition ease-in-out " +
18
18
( p . selected
19
- ? "text-gray-50 bg-gray-800 dark:text-gray-900 dark:bg-gray-50 "
19
+ ? "text-gray-500 bg-gray-50 dark:text-gray-100 dark:bg-gray-700 "
20
20
: "hover:bg-gray-100 dark:hover:bg-gray-700" ) ;
21
21
if ( p . additionalClasses ) {
22
22
classes = classes + " " + p . additionalClasses ;
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ export default function Menu() {
96
96
< img src = { gitpodIcon } className = "h-6" alt = "Gitpod's logo" />
97
97
</ Link >
98
98
< OrganizationSelector />
99
- < div className = "pl-2 text-base text-gray-500 dark:text-gray-400 flex max-w-lg overflow-hidden" >
99
+ < div className = "pl-1 text-base text-gray-500 dark:text-gray-400 flex max-w-lg overflow-hidden" >
100
100
{ leftMenu . map ( ( entry ) => (
101
101
< div className = "p-1" key = { entry . title } >
102
102
< PillMenuItem
Original file line number Diff line number Diff line change @@ -186,11 +186,11 @@ export default function OrganizationSelector(p: OrganizationSelectorProps) {
186
186
187
187
const selectedTitle = currentOrg ? currentOrg . name : userFullName ;
188
188
const classes =
189
- "flex h-full text-base py-0 text-gray-500 bg-gray-50 dark:bg-gray-800 dark: text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-700 dark:border -gray-700" ;
189
+ "flex h-full text-base py-0 text-gray-500 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-700" ;
190
190
return (
191
191
< ContextMenu customClasses = "w-64 left-0" menuEntries = { entries } >
192
192
< div className = { `${ classes } rounded-2xl pl-1` } >
193
- < div className = "py-1 pr-1 flex font-semibold whitespace-nowrap max-w-xs overflow-hidden" >
193
+ < div className = "py-1 pr-1 flex font-medium whitespace-nowrap max-w-xs overflow-hidden" >
194
194
< OrgIcon
195
195
id = { currentOrg ?. id || user ?. id || "empty" }
196
196
name = { selectedTitle }
You can’t perform that action at this time.
0 commit comments