diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b59fb4b..2bc8d614 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,8 @@ - Improved overall chart formatting (highlighting, colors, bar width, etc.) - Adjusted tooltips and headers for better clarity. - Improved the Risk Monitor view for larger screens. Thanks @GD_NL. +- Improved chart loading performance +- Updating TradingView Icon ## Bugs - Fixed a few spelling mistakes across the app diff --git a/assets/assets/tradingview-v2-svgrepo-com.svg b/assets/assets/tradingview-v2-svgrepo-com.svg new file mode 100644 index 00000000..235ffe35 --- /dev/null +++ b/assets/assets/tradingview-v2-svgrepo-com.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/app/App.global.scss b/src/app/App.global.scss index 28e76792..6ea7a9b6 100644 --- a/src/app/App.global.scss +++ b/src/app/App.global.scss @@ -58,7 +58,7 @@ .mainWindow{ flex-grow: 1; background-color: var(--color-background); - padding: 3%; + padding: 3% 1% 1% 1%; overflow: auto; display: flex; flex-direction: column; diff --git a/src/app/Components/Sidebar/Sidebar.tsx b/src/app/Components/Sidebar/Sidebar.tsx index b0f73dab..c2f03b22 100644 --- a/src/app/Components/Sidebar/Sidebar.tsx +++ b/src/app/Components/Sidebar/Sidebar.tsx @@ -2,7 +2,7 @@ import React, { Component } from 'react'; import './Sidebar.scss'; -import { ActiveDealsIcon, BackwardClock, BotPlannerIcon, Coffee, Cog, PieChart } from '@/app/Components/icons/Index'; +import { ActiveDealsIcon, TradingViewLogo, BotPlannerIcon, Coffee, Cog, PieChart } from '@/app/Components/icons/Index'; import MenuBookIcon from '@mui/icons-material/MenuBook'; import { SidebarNav, SidebarLink } from './Components'; import { ProfileSwitcher } from '@/app/Features/Profiles/Components/Index' @@ -24,7 +24,7 @@ class Sidebar extends Component { - +
{/* @ts-ignore */} diff --git a/src/app/Components/icons/Index.ts b/src/app/Components/icons/Index.ts index b04b8b5c..64e6e367 100644 --- a/src/app/Components/icons/Index.ts +++ b/src/app/Components/icons/Index.ts @@ -7,6 +7,7 @@ import PieChart from "./PieChart"; import BackwardClock from './BackwardClock'; import ActiveDealsIcon from "./ActiveDeals"; import LoaderIcon from "./Loading/Loading"; +import TradingViewLogo from "./TradingViewLogo"; export { BotPlannerIcon, @@ -17,5 +18,6 @@ export { PieChart, BackwardClock, ActiveDealsIcon, - LoaderIcon + LoaderIcon, + TradingViewLogo } \ No newline at end of file diff --git a/src/app/Components/icons/TradingViewLogo.tsx b/src/app/Components/icons/TradingViewLogo.tsx new file mode 100644 index 00000000..be117bad --- /dev/null +++ b/src/app/Components/icons/TradingViewLogo.tsx @@ -0,0 +1,19 @@ +import React from 'react' + +const TradingViewLogo = () => { + + return ( + + + + + + + + ) +} + +export default TradingViewLogo; \ No newline at end of file diff --git a/src/app/Pages/BotPlanner/BotPlanner.tsx b/src/app/Pages/BotPlanner/BotPlanner.tsx index 5c5a908f..19b7e754 100644 --- a/src/app/Pages/BotPlanner/BotPlanner.tsx +++ b/src/app/Pages/BotPlanner/BotPlanner.tsx @@ -125,7 +125,7 @@ const BotPlannerPage = () => {
-
+
{ return ( -
{/*
*/} +