added a dark theme toggle button on Copyjobs next to refresh button and covered full feature

This commit is contained in:
Sakshi Gupta
2025-12-29 12:57:26 +05:30
parent 42e230b88b
commit 72debd0778
33 changed files with 298 additions and 142 deletions

View File

@@ -103,7 +103,10 @@ export const ThroughputBucketsComponent: FC<ThroughputBucketsComponentProps> = (
offText="Inactive"
checked={bucket.maxThroughputPercentage !== 100}
onChange={(event, checked) => onToggle(bucket.id, checked)}
styles={{ root: { marginBottom: 0 }, text: { fontSize: 12 } }}
styles={{
root: { marginBottom: 0 },
text: { fontSize: 12, color: "var(--colorNeutralForeground1)" },
}}
></Toggle>
</Stack>
))}