Skip to content

Commit

Permalink
fix(ui): avoid class name that conflicts with Argo CD UI (#81)
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Crenshaw <[email protected]>
  • Loading branch information
crenshaw-dev authored Jun 18, 2024
1 parent 2111143 commit 143feac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ div:hover > div > .metrics-charts__legend_wrapper {
margin: 2px 0;
}

.input-container {
.chart-input-container {
display: flex;
font-size: 16px;
margin-left: 50px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ export const TimeSeriesChart = ({

</LineChart>
</ResponsiveContainer>
{(chartData?.thresholds.length > 0) && (<div className="input-container">
{(chartData?.thresholds.length > 0) && (<div className="chart-input-container">
<label className="label-container">
<input
type="checkbox"
Expand Down

0 comments on commit 143feac

Please sign in to comment.