Skip to content

Commit edb843d

Browse files
authored
Lighten the background color in extension views (#471)
1 parent 102d687 commit edb843d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/view/global.styl

+4
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,7 @@ body,
4343
.formik-field textarea {
4444
min-height: var(--spectrum-global-dimension-size-4600) !important
4545
}
46+
47+
.react-spectrum-provider.bg-gray-50 {
48+
background-color: var(--spectrum-gray-50) !important;
49+
}

src/view/render.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default (View, { noPadding = false } = {}) => {
3232
<Provider
3333
theme={lightTheme}
3434
colorScheme="light"
35-
UNSAFE_className={`react-spectrum-provider spectrum spectrum--medium spectrum--light${paddingClass}`}
35+
UNSAFE_className={`react-spectrum-provider spectrum spectrum--medium spectrum--light${paddingClass} bg-gray-50`}
3636
>
3737
<ErrorBoundary>
3838
<View />

0 commit comments

Comments
 (0)