File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ 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 "
20
- : "hover:bg-gray-100 dark:hover:bg-gray-700 " ) ;
19
+ ? "text-gray-500 bg-gray-50 dark:text-gray-100 dark:bg-gray-800 "
20
+ : "hover:bg-gray-100 dark:hover:bg-gray-800 " ) ;
21
21
if ( p . additionalClasses ) {
22
22
classes = classes + " " + p . additionalClasses ;
23
23
}
Original file line number Diff line number Diff line change @@ -148,11 +148,11 @@ export default function OrganizationSelector() {
148
148
149
149
const selectedTitle = currentOrg ?. data ? currentOrg . data . name : userFullName ;
150
150
const classes =
151
- "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" ;
151
+ "flex h-full text-base py-0 text-gray-500 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-700" ;
152
152
return (
153
153
< ContextMenu customClasses = "w-64 left-0" menuEntries = { entries } >
154
154
< div className = { `${ classes } rounded-2xl pl-1` } >
155
- < div className = "py-1 pr-1 flex font-semibold whitespace-nowrap max-w-xs overflow-hidden" >
155
+ < div className = "py-1 pr-1 flex font-medium whitespace-nowrap max-w-xs overflow-hidden" >
156
156
< OrgIcon
157
157
id = { currentOrg ?. data ?. id || user ?. id || "empty" }
158
158
name = { selectedTitle }
You can’t perform that action at this time.
0 commit comments