Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
lifeparticle committed Sep 25, 2023
1 parent b409cc0 commit 887531e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
9 changes: 8 additions & 1 deletion ui/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,14 @@ const App: React.FC = () => {

return (
<ErrorBoundary fallback={<p>Something went wrong</p>}>
<ConfigProvider theme={{ algorithm }}>
<ConfigProvider
theme={{
algorithm,
token: {
colorPrimary: "#333333",
},
}}
>
<Layout>
<Layout hasSider>
<Sidebar />
Expand Down
5 changes: 0 additions & 5 deletions ui/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ h5 {
overflow-x: auto;
overflow-y: auto;
max-height: 100dvh;
/* padding: var(--bt-size-10) var(--bt-size-10) 0 var(--bt-size-10); */
scroll-behavior: smooth;
}

Expand Down Expand Up @@ -126,7 +125,3 @@ h5 {
.ant-menu-submenu-popup .ant-menu-vertical {
max-height: 300px !important;
}

.ant-spin-dot-item {
background-color: rgba(0, 0, 0, 0.8) !important;
}

0 comments on commit 887531e

Please sign in to comment.