File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
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 @@ -166,11 +166,11 @@ export default function OrganizationSelector(p: OrganizationSelectorProps) {
166
166
167
167
const selectedTitle = currentOrg ?. data ? currentOrg . data . name : userFullName ;
168
168
const classes =
169
- "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" ;
169
+ "flex h-full text-base py-0 text-gray-500 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-700" ;
170
170
return (
171
171
< ContextMenu customClasses = "w-64 left-0" menuEntries = { entries } >
172
172
< div className = { `${ classes } rounded-2xl pl-1` } >
173
- < div className = "py-1 pr-1 flex font-semibold whitespace-nowrap max-w-xs overflow-hidden" >
173
+ < div className = "py-1 pr-1 flex font-medium whitespace-nowrap max-w-xs overflow-hidden" >
174
174
< OrgIcon
175
175
id = { currentOrg ?. data ?. id || user ?. id || "empty" }
176
176
name = { selectedTitle }
You can’t perform that action at this time.
0 commit comments