diff --git a/frontend/src/container/LogsExplorerViews/LogsExplorerViews.styled.ts b/frontend/src/container/LogsExplorerViews/LogsExplorerViews.styled.ts index a73fe526fb..712c89361b 100644 --- a/frontend/src/container/LogsExplorerViews/LogsExplorerViews.styled.ts +++ b/frontend/src/container/LogsExplorerViews/LogsExplorerViews.styled.ts @@ -1,13 +1,5 @@ -import { Tabs } from 'antd'; -import { themeColors } from 'constants/theme'; import styled from 'styled-components'; -export const TabsStyled = styled(Tabs)` - & .ant-tabs-nav { - background-color: ${themeColors.lightBlack}; - } -`; - export const ActionsWrapper = styled.div` display: flex; justify-content: flex-end; diff --git a/frontend/src/container/LogsExplorerViews/index.tsx b/frontend/src/container/LogsExplorerViews/index.tsx index 49f5aa13b5..d0fb3e4c20 100644 --- a/frontend/src/container/LogsExplorerViews/index.tsx +++ b/frontend/src/container/LogsExplorerViews/index.tsx @@ -1,4 +1,4 @@ -import { TabsProps } from 'antd'; +import { Tabs, TabsProps } from 'antd'; import TabLabel from 'components/TabLabel'; import { QueryParams } from 'constants/query'; import { @@ -40,7 +40,7 @@ import { import { DataSource, StringOperators } from 'types/common/queryBuilder'; import { GlobalReducer } from 'types/reducer/globalTime'; -import { ActionsWrapper, TabsStyled } from './LogsExplorerViews.styled'; +import { ActionsWrapper } from './LogsExplorerViews.styled'; function LogsExplorerViews(): JSX.Element { const { notifications } = useNotifications(); @@ -480,7 +480,7 @@ function LogsExplorerViews(): JSX.Element { /> )} -