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]>
crenshaw-dev authored Jun 18, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 2111143 commit 143feac
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -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;
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 143feac

Please sign in to comment.