fix: minor fixes

This commit is contained in:
Yunus M 2025-05-16 15:15:29 +05:30 committed by SagarRajput-7
parent 7a98bed694
commit 14e4273ae9
5 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
import './MetricsAggegateSection.styles.scss';
import './MetricsAggregateSection.styles.scss';
import { Tooltip } from 'antd';
import InputWithLabel from 'components/InputWithLabel/InputWithLabel';

View File

@ -17,7 +17,7 @@
.ant-select-dropdown {
border-radius: 4px;
border: 1px solid var(--Slate-400, #1d212d);
border: 1px solid var(--bg-slate-400);
background: linear-gradient(
139deg,
rgba(18, 19, 23, 0.8) 0%,

View File

@ -27,14 +27,14 @@
background: var(--bg-slate-400);
}
.selected_view {
.selected-view {
color: var(--text-robin-500);
border: 1px solid var(--bg-slate-400);
display: none;
}
.selected_view::before {
.selected-view::before {
background: var(--bg-slate-400);
}
}

View File

@ -189,7 +189,7 @@ function QueryAddOns({
key={addOn.label}
className={
selectedViews.find((view) => view.key === addOn.key)
? 'selected_view tab'
? 'selected-view tab'
: 'tab'
}
value={addOn}