mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 16:59:12 +00:00
fix: user dropdown colors (#141)
fix(Base): Added missing transition-colors property to the user dropdown pill in the header component.
This commit is contained in:
parent
a18e2bc09d
commit
d4d9169210
1 changed files with 3 additions and 1 deletions
|
@ -115,7 +115,9 @@ export default function Base() {
|
||||||
<Menu.Button
|
<Menu.Button
|
||||||
className={classNames(
|
className={classNames(
|
||||||
open ? "bg-gray-200 dark:bg-gray-800" : "",
|
open ? "bg-gray-200 dark:bg-gray-800" : "",
|
||||||
"text-gray-800 dark:text-gray-300 max-w-xs rounded-full flex items-center text-sm px-3 py-2 hover:bg-gray-200 dark:hover:bg-gray-800"
|
"text-gray-800 dark:text-gray-300 hover:bg-gray-200 dark:hover:bg-gray-800",
|
||||||
|
"max-w-xs rounded-full flex items-center text-sm px-3 py-2",
|
||||||
|
"transition-colors duration-200"
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<span className="hidden text-sm font-medium sm:block">
|
<span className="hidden text-sm font-medium sm:block">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue