Skip to content

Commit f382bcf

Browse files
committed
fix git plugin commands panel
1 parent 1df93b6 commit f382bcf

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

libs/remix-ui/git/src/components/panels/commands/pushpull.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ export const PushPull = () => {
205205

206206
<div className="pt-3 d-flex align-items-center remixui_compilerConfig form-check">
207207
<input checked={force} onChange={e => onForceChange(e)} className="form-check-input" type="checkbox" data-id="compilerContainerAutoCompile" id="forcepush" title="Force Push" />
208-
<label className="form-check-label " htmlFor="forcepush">Force push</label>
208+
<label className="form-check-label ms-1" htmlFor="forcepush">Force push</label>
209209
</div>
210210

211211
</>)

libs/remix-ui/git/src/types/styles.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,39 +3,39 @@ export const selectStyles: StylesConfig = {
33
option: (baseStyles, state) => {
44
return {
55
...baseStyles,
6-
color: 'var(--text)',
6+
color: 'var(--bs-body-color)',
77
}
88
},
99
input(base, props) {
1010
return {
1111
...base,
12-
color: 'var(--text)',
12+
color: 'var(--bs-body-color)',
1313
}
1414
},
1515
singleValue: (baseStyles, state) => {
1616
return {
1717
...baseStyles,
18-
color: 'var(--text)',
18+
color: 'var(--bs-body-color)',
1919
}
2020
},
2121
control: (baseStyles, state) => ({
2222
...baseStyles,
23-
color: 'var(--text)',
24-
backgroundColor: 'var(--custom-select)',
23+
color: 'var(--bs-body-color)',
24+
backgroundColor: 'var(--custom-onsurface-layer-2)',
2525
border: 'none',
2626
}),
2727
menu: (baseStyles, state) => {
2828
return {
2929
...baseStyles,
30-
backgroundColor: 'var(--custom-select)',
31-
color: 'var(--text)',
30+
backgroundColor: 'var(--custom-onsurface-layer-2)',
31+
color: 'var(--bs-body-color)',
3232
}
3333
},
3434
menuList: (baseStyles, props) => {
3535
return {
3636
...baseStyles,
37-
backgroundColor: 'var(--custom-select)',
38-
color: 'var(--text)',
37+
backgroundColor: 'var(--custom-onsurface-layer-2)',
38+
color: 'var(--bs-body-color)',
3939
}
4040
},
4141
}

0 commit comments

Comments
 (0)