Skip to content

Commit 33339e9

Browse files
committed
fix compile button dropdown
1 parent af4db1c commit 33339e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libs/remix-ui/tabs/src/lib/components/DropdownMenu.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const DropdownMenu: React.FC<DropdownMenuProps> = ({ items, disabled, onOpen, tr
5353
</button>
5454

5555
{open && (
56-
<div className="custom-dropdown-panel" data-id={panelDataId || 'custom-dropdown-panel'}>
56+
<div className="custom-dropdown-panel bg-light" data-id={panelDataId || 'custom-dropdown-panel'}>
5757
{items.map((item, idx) => (
5858
<div
5959
key={idx}
@@ -77,7 +77,7 @@ const DropdownMenu: React.FC<DropdownMenuProps> = ({ items, disabled, onOpen, tr
7777
{item.submenu.map((sub, subIdx) => (
7878
<div
7979
key={subIdx}
80-
className={`custom-dropdown-item ${sub.borderTop ? 'border-top' : ''} ${sub.borderBottom ? 'border-bottom' : ''}`}
80+
className={`custom-dropdown-item bg-light ${sub.borderTop ? 'border-top' : ''} ${sub.borderBottom ? 'border-bottom' : ''}`}
8181
onClick={() => {
8282
if (!disabled && sub.onClick){
8383
sub.onClick()

0 commit comments

Comments
 (0)