Skip to content

Commit 1e89a07

Browse files
committed
make the chipset match the settings color
1 parent 8cdd366 commit 1e89a07

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

src/components/Elements/ChipsSet/chipset.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,10 @@
4040
background-color: var(--chip-active-background);
4141
color: var(--chip-active-text);
4242
}
43+
44+
.chipsSet.alternative-color .chip {
45+
background-color: var(--card-action-button-background);
46+
}
47+
.chipsSet.alternative-color .chip.active {
48+
background-color: var(--card-active-action-button-background);
49+
}

src/features/settings/components/SettingsModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ export const SettingsModal = ({ showSettings, setShowSettings }: SettingsModalPr
228228
<p className="settingTitle">Max number of cards to display</p>
229229
<div className="settingContent">
230230
<ChipsSet
231-
className={'noMargin'}
231+
className={'noMargin alternative-color'}
232232
canSelectMultiple={false}
233233
options={[
234234
{

0 commit comments

Comments
 (0)