fix: layout
This commit is contained in:
parent
a9afee477e
commit
d9d0f3fcf5
|
@ -73,10 +73,10 @@ const BottomMenu: FC<Props> = ({ className }) => {
|
|||
{'share' in navigator ? (
|
||||
<button
|
||||
disabled={isWelcoming}
|
||||
className="p-1 h-16 w-7 rounded shadow-lg bg-purple-500 hover:bg-purple-400 disabled:hover:bg-purple-500 disabled:cursor-default"
|
||||
className="p-1 h-16 w-10 rounded shadow-lg bg-purple-500 hover:bg-purple-400 disabled:hover:bg-purple-500 disabled:cursor-default"
|
||||
onClick={onShare}
|
||||
>
|
||||
<ShareIcon className="h-full text-purple-50 dark:text-gray-900" />
|
||||
<ShareIcon className="text-purple-50 dark:text-gray-900" />
|
||||
</button>
|
||||
) : (
|
||||
<button
|
||||
|
|
|
@ -55,7 +55,7 @@ const TopMenu: FC<Props> = () => {
|
|||
<div className="relative z-20" ref={advancedRef}>
|
||||
<button
|
||||
className={clsx(
|
||||
'w-10 p-1 rounded bg-purple-500 shadow-md text-purple-50 dark:text-gray-900 hover:cursor-pointer hover:bg-purple-400 transition-colors dark:hover:text-purple-50 dark:text-gray-900'
|
||||
'w-10 p-1 rounded bg-purple-500 shadow-md text-purple-50 dark:text-gray-900 hover:cursor-pointer hover:bg-purple-400 transition-colors dark:hover:text-purple-50'
|
||||
)}
|
||||
onClick={toggleAdvanced}
|
||||
>
|
||||
|
|
Reference in a new issue