Merge pull request #3788 from ethereum/fix_hamburger

Fix hamburger menu
pull/3785/head
yann300 1 year ago committed by GitHub
commit 22689cce6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      libs/remix-ui/helper/src/lib/components/custom-dropdown.tsx
  2. 4
      libs/remix-ui/workspace/src/lib/css/remix-ui-workspace.css

@ -27,7 +27,7 @@ export const CustomIconsToggle = React.forwardRef(({ onClick, icon, className =
e.preventDefault()
onClick()
}}
className={`${className.replace('dropdown-toggle', '')} mb-0 pb-0 d-flex justify-content-end align-items-end remixuimenuicon_shadow fs-3`}
className={`${className.replace('dropdown-toggle', '')} mr-1 mb-0 pb-0 d-flex justify-content-end align-items-end remixuimenuicon_shadow remixuimenuicon_hamburger_menu fs-3`}
data-id="workspaceMenuDropdown"
>
{ icon && <i style={{ fontSize: 'large' }} className={`${icon}`} data-id="workspaceDropdownMenuIcon"></i> }

@ -91,6 +91,10 @@
.remixuimenuicon_shadow {
}
.remixuimenuicon_hamburger_menu {
cursor: pointer;
}
.remixuimenuicon_shadow:hover {
box-shadow: 0px 0px 14px -7px;
}

Loading…
Cancel
Save