Skip to content

Commit

Permalink
fix: 修复问题
Browse files Browse the repository at this point in the history
  • Loading branch information
JackySoft committed Nov 21, 2024
1 parent b35137c commit b9d209a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
line-height: 32px;
font-size: 14px;
font-weight: 500;
background-color: var(--mars-theme-color);
background-color: var(--mars-theme-bg-color);
.navTitle {
padding-left: 10px;
}
.subItem {
line-height: 32px;
background-color: var(--mars-theme-bg-color);
background-color: var(--mars-theme-color);
padding-left: 30px;
font-weight: normal;
cursor: pointer;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.title {
background: var(--mars-theme-color);
background: var(--mars-theme-bg-color);
border-top: 1px solid var(--mars-theme-card-border-color);
color: var(--mars-theme-text-color);
font-size: 14px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const DragMenuItem = (props: IDragTarget) => {
};

return (
<Button type="default" block ref={drag} onClick={() => handleClick(props)}>
<Button type="default" style={{ fontSize: 12 }} block ref={drag} onClick={() => handleClick(props)}>
{props.name}
</Button>
);
Expand Down

0 comments on commit b9d209a

Please sign in to comment.